-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
33 lines (33 loc) · 1.06 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"strict": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"importHelpers": true,
"skipLibCheck": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@layout-projection/angular": ["./packages/angular/dist"],
"@layout-projection/angular/*": ["./packages/angular/dist/*"],
"@layout-projection/animation": ["./packages/animation"],
"@layout-projection/animation/*": ["./packages/animation/dist/*"],
"@layout-projection/core": ["./packages/core"],
"@layout-projection/core/*": ["./packages/core/dist/*"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}