-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathtsconfig.json
More file actions
70 lines (70 loc) · 2.17 KB
/
Copy pathtsconfig.json
File metadata and controls
70 lines (70 loc) · 2.17 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"compileOnSave": false,
"compilerOptions": {
"strict": true,
"importHelpers": true,
"module": "es2022",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"target": "ES2022",
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"typeRoots": [
"node_modules/@types"
],
"paths": {
"igniteui-angular": [
"./projects/igniteui-angular/src/public_api.ts"
],
"igniteui-angular/*": [
"./projects/igniteui-angular/*"
],
"igniteui-angular-i18n": [
"./projects/igniteui-angular-i18n/src/index.ts"
],
"igniteui-angular-extras": [
"./projects/igniteui-angular-extras/src/public-api.ts"
],
},
"rootDir": ".",
"useDefineForClassFields": false,
"noImplicitOverride": true
},
"exclude": [
"dist",
"projects/igniteui-angular/migrations/",
"projects/igniteui-angular/schematics/",
"projects/igniteui-angular/cypress/",
"cypress",
"./cypress.config.ts"
],
"angularCompilerOptions": {
"generateDeepReexports": true,
"strictTemplates": true,
"extendedDiagnostics": {
"defaultCategory": "error",
// Kept in sync with tsconfig.lib.json / tsconfig.spec.json. A defensive `?.` on a
// member the types claim is non-nullable is usually the type lying, not a redundant
// guard - flagging these as errors leads to guards being deleted and null crashes.
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
},
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
},
"references": [
{
"path": "./projects/igniteui-angular-performance/tsconfig.app.json"
},
{
"path": "./projects/igniteui-angular-performance/tsconfig.spec.json"
}
]
}