-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (39 loc) · 1.09 KB
/
Copy pathtsconfig.base.json
File metadata and controls
39 lines (39 loc) · 1.09 KB
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
{
"compilerOptions": {
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": false,
"strictNullChecks": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "Bundler",
"importHelpers": true,
"target": "ES2022",
"module": "preserve",
"lib": ["ES2022", "dom"],
"useDefineForClassFields": false,
"paths": {
"@lucca-front/icons": ["./packages/icons/index.d.ts"],
"@lucca-front/ng/*": ["./packages/ng/*/public-api.ts"],
"@lucca/prisme/*": ["./packages/prisme/*/public-api.ts"],
"@/stories/*": ["./stories/documentation/*"],
"@/helpers/*": ["./stories/helpers/*"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true,
"strictStandalone": true,
"extendedDiagnostics": {
"defaultCategory": "error"
}
}
}