-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
35 lines (35 loc) · 1.05 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": {
"baseUrl": ".",
"rootDir": ".",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"strict": true,
"exactOptionalPropertyTypes": true,
"strictNullChecks": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022", "dom"],
"types": ["node", "lodash"],
"strictPropertyInitialization": false,
"paths": {
"@blend-api/calculator": ["libs/calculator/src/index.ts"],
"@blend-api/hacker-news": ["libs/hacker-news/src/index.ts"],
"@blend-api/quotes": ["libs/quotes/src/index.ts"],
"@blend-api/shared": ["libs/shared/src/index.ts"],
"@blend-api/weather": ["libs/weather/src/index.ts"]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"_enabledBlockTypes": ["if", "for", "switch", "defer"]
},
"exclude": ["node_modules", "tmp"]
}