-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (27 loc) · 850 Bytes
/
tsconfig.json
File metadata and controls
28 lines (27 loc) · 850 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2020",
"moduleResolution": "bundler",
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"typeRoots": ["node_modules/@types"],
"esModuleInterop": true,
"resolveJsonModule": true,
"useDefineForClassFields": false,
// This is currently required because of a typing issue in Ionic 8.
// See https://github.com/ionic-team/ionic-framework/issues/30650#issuecomment-3254931600
// Remove this again once Ionic 9 is released, which should fix the root cause.
"skipLibCheck": true
},
"angularCompilerOptions": {
"strictTemplates": true,
"strictStandalone": true
}
}