-
Notifications
You must be signed in to change notification settings - Fork 21
/
tsconfig.json
62 lines (62 loc) · 1.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"baseUrl": "src",
"strict": false,
// we are working towards enabling this soon
"noImplicitOverride": true,
// TODO: enable more strict rules (these are included in latest angular default projects)
// "noPropertyAccessFromIndexSignature": true,
// "noImplicitReturns": true,
// "noFallthroughCasesInSwitch": true,
// "isolatedModules": true,
"skipLibCheck": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "bundler",
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": false,
// TODO fix decorator issues caused by the changed initialization order
"target": "ES2022",
"module": "ES2022",
"resolveJsonModule": true,
"lib": [
"ES2022",
"dom"
],
"types": [
"jasmine"
],
"paths": {
"stream": [
"./node_modules/stream-browserify"
],
"process": [
"./node_modules/process"
],
"util": [
"./node_modules/util"
],
"assert": [
"./node_modules/assert"
]
}
},
"exclude": [
"e2e",
"./cypress.config.ts",
"**/*.cy.tsx"
],
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}