forked from nrwl/nx-shops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
54 lines (54 loc) · 1.84 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
49
50
51
52
53
54
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"noUnusedLocals": true,
"sourceMap": false,
"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-shops/cart/cart-page": ["libs/cart/cart-page/src/index.ts"],
"@nx-shops/shared/cart/state/react": [
"libs/shared/cart/state/src/react.ts"
],
"@nx-shops/shared/header": ["libs/shared/header/src/index.ts"],
"@nx-shops/shared/product/data": [
"libs/shared/product/data/src/index.ts"
],
"@nx-shops/shared/product/data/testing": [
"libs/shared/product/data/src/testing.ts"
],
"@nx-shops/shared/product/state": [
"libs/shared/product/state/src/index.ts"
],
"@nx-shops/shared/product/state/react": [
"libs/shared/product/state/src/react.ts"
],
"@nx-shops/shared/product/types": [
"libs/shared/product/types/src/index.ts"
],
"@nx-shops/shared/product/ui": ["libs/shared/product/ui/src/index.ts"],
"@nx-shops/shared/styles": ["libs/shared/styles/src/index.ts"],
"@nx-shops/shared/ze2e-utils": ["libs/shared/e2e-utils/src/index.ts"],
"products-product-detail-page": [
"libs/products/product-detail-page/src/index.ts"
],
"products-product-detail-page-old": [
"libs/products/product-detail-page-old/src/index.ts"
],
"pruoducts-home-page-old": ["libs/products/home-page-old/src/index.ts"],
"shared-cart-state": ["libs/shared/cart/state/src/react.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}