-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 1.25 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
42
{
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "build",
"typeRoots": ["node_modules/@types"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"types": ["node", "jest"],
"lib": ["es2018"],
"declaration": true,
"baseUrl": ".",
"paths": {
"@nrwl/tao": ["./packages/tao"],
"@nrwl/tao/*": ["./packages/tao/*"],
"@nrwl/workspace": ["./packages/workspace"],
"@nrwl/workspace/*": ["./packages/workspace/*"],
"@nrwl/workspace/testing": ["./packages/workspace/testing"],
"@nrwl/react": ["./packages/react"],
"@nrwl/react/*": ["./packages/react/*"],
"@nrwl/web": ["./packages/web"],
"@nrwl/web/*": ["./packages/web/*"]
}
},
"exclude": [
"tmp",
"build",
"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"
]
}