-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
35 lines (35 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"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,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@nx-todos/api/data": ["libs/api/data/src/index.ts"],
"@nx-todos/api/router": ["libs/api/router/src/index.ts"],
"@nx-todos/shared/data-model": ["libs/shared/data-model/src/index.ts"],
"@nx-todos/shared/helpers": ["libs/shared/helpers/src/index.ts"],
"@nx-todos/shared/redux-helpers": [
"libs/shared/redux-helpers/src/index.ts"
],
"@nx-todos/todos/api-calls": ["libs/todos/api-calls/src/index.ts"],
"@nx-todos/todos/feature": ["libs/todos/feature/src/index.tsx"],
"@nx-todos/todos/redux": ["libs/todos/redux/src/index.ts"],
"@nx-todos/todos/ui-components/*": ["libs/todos/ui-components/src/*"],
"@nx-todos/todos/wrapper": ["libs/todos/wrapper/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}