forked from nrwl/nx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 733 Bytes
/
Copy pathtsconfig.json
File metadata and controls
31 lines (31 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"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",
"node_modules",
"packages/bazel",
"packages/schematics/src/*/files/**/*"
],
"angularCompilerOptions": {
"strictMetadataEmit": true,
"skipTemplateCodegen": true,
"annotationsAs": "decorators"
}
}