1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-11-28 08:58:49 +02:00
pigallery2/tsconfig.json

29 lines
703 B
JSON
Raw Normal View History

2016-03-12 13:53:19 +02:00
{
"compileOnSave": true,
2016-03-12 13:53:19 +02:00
"compilerOptions": {
2018-11-29 00:49:33 +02:00
"noImplicitAny": true,
2022-04-04 19:37:31 +02:00
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
2016-12-27 00:36:38 +02:00
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
2016-03-12 13:53:19 +02:00
"emitDecoratorMetadata": true,
2016-12-27 00:36:38 +02:00
"experimentalDecorators": true,
2022-04-04 19:37:31 +02:00
"moduleResolution": "node",
"importHelpers": true,
2023-03-11 12:12:46 +02:00
"target": "ES2022",
"module": "CommonJS",
2023-03-11 14:58:38 +02:00
"useDefineForClassFields": false,
2016-12-27 00:36:38 +02:00
"lib": [
2023-03-11 14:58:38 +02:00
"ES2022",
"dom"
2023-03-11 14:58:38 +02:00
]
},
"angularCompilerOptions": {
2022-04-04 19:37:31 +02:00
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}