spiegel-keyman/web/tsconfig.base.json
2024-07-04 20:49:30 +02:00

20 lines
577 B
JSON

{
"extends": "../tsconfig.base.json",
// TODO: eliminate settings duplicated in ../tsconfig.base.json
"compilerOptions": {
// Primary settings - the version of ES6 we can target in TS, our downcompile target,
// and our module-related settings.
"allowSyntheticDefaultImports": true,
"lib": ["es6"],
"target": "es6",
// Other settings - declaration files, sourcemapping, and other miscellaneous bits.
"declaration": true,
"experimentalDecorators": true,
"importHelpers": true,
"inlineSources": true,
"sourceMap": true,
}
}