forked from nrwl/nx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.12 KB
/
tsconfig.json
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
32
33
34
35
36
37
38
39
40
41
{
"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/workspace": ["./packages/workspace"],
"@nrwl/workspace/*": ["./packages/workspace/*"],
"@nrwl/workspace/testing": ["./packages/workspace/testing"]
}
},
"exclude": [
"tmp",
"build",
"packages/bazel",
"packages/schematics/src/*/files/**/*",
"packages/workspace/src/*/files/**/*",
"packages/jest/src/*/files/**/*",
"packages/cypress/src/*/files/**/*",
"packages/node/src/*/files/**/*",
"packages/express/src/*/files/**/*",
"packages/nest/src/*/files/**/*",
"packages/angular/src/*/files/**/*",
"packages/react/src/*/files/**/*",
"packages/web/src/*/files/**/*",
"scripts"
],
"angularCompilerOptions": {
"strictMetadataEmit": true,
"skipTemplateCodegen": true,
"annotationsAs": "decorators"
}
}