Remove `dos2unix` uses in the `format` command because Pretter is now handling the end of line options.
32 lines
728 B
JSON
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"
|
|
}
|
|
}
|