-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
48 lines (48 loc) · 1.14 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"outDir": "./dist/out-tsc/workspace",
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "node",
"lib": [
"ES2022",
"dom"
],
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"sourceMap": true,
"strict": true,
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"useDefineForClassFields": false,
"paths": {
"@enten/ngx-sticky": [
"projects/ngx-sticky/src/public-api.ts"
]
}
},
"exclude": [
"dist",
"coverage",
"node_modules",
"tmp"
],
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}