Skip to content

Instantly share code, notes, and snippets.

@brandonroberts
Created May 24, 2021 14:42
Show Gist options
  • Save brandonroberts/e98fa6d01424f3b26af803dd61290262 to your computer and use it in GitHub Desktop.
Save brandonroberts/e98fa6d01424f3b26af803dd61290262 to your computer and use it in GitHub Desktop.
Schematic tsconfig
{
"compilerOptions": {
"baseUrl": ".",
"lib": [
"es2018",
"dom"
],
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"rootDir": "schematics",
"outDir": "../../dist/my-lib/schematics",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strictNullChecks": true,
"target": "es6",
"types": [
"node"
]
},
"include": [
"schematics/**/*"
],
"exclude": [
"schematics/*/files/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment