forked from nrwl/nx-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
48 lines (48 loc) · 1.66 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
39
40
41
42
43
44
45
46
47
48
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"noUnusedLocals": true,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@nx-example/shared/product/types": [
"libs/shared/product/types/src/index.ts"
],
"@nx-example/shared/product/data": [
"libs/shared/product/data/src/index.ts"
],
"@nx-example/shared/product/data/testing": [
"libs/shared/product/data/src/testing.ts"
],
"@nx-example/shared/product/ui": ["libs/shared/product/ui/src/index.ts"],
"@nx-example/products/home-page": [
"libs/products/home-page/src/index.ts"
],
"@nx-example/cart/cart-page": ["libs/cart/cart-page/src/index.ts"],
"@nx-example/shared/e2e-utils": ["libs/shared/e2e-utils/src/index.ts"],
"@nx-example/shared/jsxify": ["libs/shared/jsxify/src/index.ts"],
"@nx-example/shared/cart/state": ["libs/shared/cart/state/src/index.ts"],
"@nx-example/shared/product/state": [
"libs/shared/product/state/src/index.ts"
],
"@nx-example/shared/header": ["libs/shared/header/src/index.ts"],
"@nx-example/products/product-detail-page": [
"libs/products/product-detail-page/src/index.ts"
],
"@nx-example/shared/styles": ["libs/shared/styles/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}