32 lines
634 B
JSON
32 lines
634 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "build",
|
|
"typeRoots": ["node_modules/@types"],
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"declaration": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@nrwl/schematics": [
|
|
"./packages/schematics"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"tmp",
|
|
"node_modules",
|
|
"packages/schematics/src/*/files/**/*"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictMetadataEmit": true,
|
|
"skipTemplateCodegen": true
|
|
}
|
|
}
|