nx/tsconfig.json
Benjamin Cabanes 35c4089160 chore(prettier): add end of line settings (#1070)
Remove `dos2unix` uses in the `format` command because Pretter is now
handling the end of line options.
2019-02-12 10:11:57 -05:00

32 lines
728 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"],
"@nrwl/schematics/*": ["./packages/schematics/*"]
}
},
"exclude": [
"tmp",
"build",
"packages/bazel",
"packages/schematics/src/*/files/**/*",
"scripts"
],
"angularCompilerOptions": {
"strictMetadataEmit": true,
"skipTemplateCodegen": true,
"annotationsAs": "decorators"
}
}