forked from nrwl/nx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
38 lines (38 loc) · 1.26 KB
/
tsconfig.base.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
{
"compilerOptions": {
"target": "es2015",
"sourceMap": true,
"importHelpers": true,
"module": "esnext",
"moduleResolution": "node",
"outDir": "build",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"types": ["node", "jest"],
"lib": ["es2018"],
"declaration": true,
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@nrwl/tao": ["./packages/tao"],
"@nrwl/tao/*": ["./packages/tao/*"],
"@nrwl/devkit": ["./packages/devkit"],
"@nrwl/devkit/testing": ["./packages/devkit/testing"],
"@nrwl/devkit/ngcli-adapter": ["./packages/devkit/ngcli-adapter"],
"@nrwl/workspace": ["./packages/workspace"],
"@nrwl/workspace/*": ["./packages/workspace/*"],
"@nrwl/cli": ["./packages/cli"],
"@nrwl/cli/*": ["./packages/cli/*"],
"@nrwl/workspace/testing": ["./packages/workspace/testing"],
"@nrwl/react": ["./packages/react"],
"@nrwl/react/*": ["./packages/react/*"],
"@nrwl/web": ["./packages/web"],
"@nrwl/web/*": ["./packages/web/*"],
"@nrwl/angular": ["./packages/angular"],
"@nrwl/angular/*": ["./packages/angular/*"],
"@nrwl/e2e/utils": ["./e2e/utils"],
"@nrwl/e2e/cli": ["./e2e/cli"]
}
}
}