nx/tsconfig.json
2017-09-14 11:46:54 -04:00

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
}
}