-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.base.json
41 lines (41 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
36
37
38
39
40
41
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": true,
"importHelpers": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": false,
"target": "es5",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@orchestrator/core": ["libs/core/src/index.ts"],
"@orchestrator/core/testing": ["libs/core/testing/src/index.ts"],
"@orchestrator/html-tag": ["libs/html-tag/src/index.ts"],
"@orchestrator/layout": ["libs/layout/src/index.ts"],
"@orchestrator/stepper": ["libs/stepper/src/index.ts"],
"@orchestrator/ui-web": ["libs/ui-web/src/index.ts"]
}
},
"angularCompilerOptions": {
"compilationMode": "partial",
"annotateForClosureCompiler": true,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"enableResourceInlining": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"exclude": ["node_modules", "tmp", "dist"]
}