-
Notifications
You must be signed in to change notification settings - Fork 41
/
tsconfig.json
33 lines (33 loc) · 937 Bytes
/
tsconfig.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,
"compilerOptions": {
"strict": false,
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"importHelpers": true,
"target": "es2022",
"resolveJsonModule": true,
"lib": ["es2022", "dom"],
"types": ["jest"],
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@angular-extensions/elements/*": ["projects/elements/*"],
"@angular-extensions/elements": ["projects/elements/src/public-api.ts"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}