2016-03-12 19:53:19 +08:00
|
|
|
{
|
2017-06-11 04:32:56 +08:00
|
|
|
"compileOnSave": true,
|
2016-03-12 19:53:19 +08:00
|
|
|
"compilerOptions": {
|
2018-11-29 06:49:33 +08:00
|
|
|
"noImplicitAny": true,
|
2022-04-05 01:37:31 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-12-27 06:36:38 +08:00
|
|
|
"sourceMap": true,
|
2017-06-11 04:32:56 +08:00
|
|
|
"declaration": false,
|
2021-04-11 21:59:30 +08:00
|
|
|
"downlevelIteration": true,
|
2016-03-12 19:53:19 +08:00
|
|
|
"emitDecoratorMetadata": true,
|
2016-12-27 06:36:38 +08:00
|
|
|
"experimentalDecorators": true,
|
2022-04-05 01:37:31 +08:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": true,
|
2023-03-11 18:12:46 +08:00
|
|
|
"target": "ES2022",
|
2022-03-31 04:18:02 +08:00
|
|
|
"module": "CommonJS",
|
2023-03-11 20:58:38 +08:00
|
|
|
"useDefineForClassFields": false,
|
2016-12-27 06:36:38 +08:00
|
|
|
"lib": [
|
2023-03-11 20:58:38 +08:00
|
|
|
"ES2022",
|
2017-06-11 04:32:56 +08:00
|
|
|
"dom"
|
2023-03-11 20:58:38 +08:00
|
|
|
]
|
2021-04-11 21:59:30 +08:00
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
2022-04-05 01:37:31 +08:00
|
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
|
|
"strictInjectionParameters": true,
|
|
|
|
"strictInputAccessModifiers": true,
|
|
|
|
"strictTemplates": true
|
2023-09-06 18:56:52 +08:00
|
|
|
},
|
|
|
|
"exclude": [
|
2023-09-06 19:47:06 +08:00
|
|
|
"cypress.config.ts",
|
2023-09-06 20:10:50 +08:00
|
|
|
// See https://github.com/cypress-io/cypress/issues/7552#issuecomment-763498855
|
2023-09-06 19:47:06 +08:00
|
|
|
"cypress/**/*"
|
2023-09-06 18:56:52 +08:00
|
|
|
]
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|