-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
33 lines (33 loc) · 1 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
{
"compileOnSave": false,
"angularCompilerOptions": {
"strictTemplates": true
},
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"types": ["jest"],
"paths": {
"@nay/data": ["libs/data/src/index.ts"],
"@nay/types": ["libs/types/src/index.ts"],
"@nay/ui": ["libs/ui/src/index.ts"],
"@nay/list-page": ["libs/list-page/src/index.ts"],
"@nay/pokemon-summary-page": ["libs/pokemon-summary-page/src/index.ts"],
"@nay/fav-list-page": ["libs/fav-list-page/src/index.ts"],
"@nay/caught-list-page": ["libs/caught-list-page/src/index.ts"],
"@nay/base-page": ["libs/base-page/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}