1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/tsconfig.json

36 lines
901 B
JSON
Raw Normal View History

2016-03-12 12:53:19 +01:00
{
"compileOnSave": true,
2016-03-12 12:53:19 +01:00
"compilerOptions": {
2018-11-28 23:49:33 +01:00
"noImplicitAny": true,
2022-04-04 19:37:31 +02:00
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
2016-12-26 23:36:38 +01:00
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
2016-03-12 12:53:19 +01:00
"emitDecoratorMetadata": true,
2016-12-26 23:36:38 +01:00
"experimentalDecorators": true,
2022-04-04 19:37:31 +02:00
"moduleResolution": "node",
"importHelpers": true,
2023-03-11 11:12:46 +01:00
"target": "ES2022",
"module": "CommonJS",
2023-03-11 13:58:38 +01:00
"useDefineForClassFields": false,
2016-12-26 23:36:38 +01:00
"lib": [
2023-03-11 13:58:38 +01:00
"ES2022",
"dom"
2023-03-11 13:58:38 +01:00
]
},
"angularCompilerOptions": {
2022-04-04 19:37:31 +02:00
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
2023-09-06 12:56:52 +02:00
},
"exclude": [
"cypress.config.ts",
// See https://github.com/cypress-io/cypress/issues/7552#issuecomment-763498855
2023-11-25 17:00:58 +01:00
"test/cypress/**/*",
"extension/**/*",
"extensions/**/*"
2023-09-06 12:56:52 +02:00
]
}