spiegel-keyman/web/tsconfig.base.json
2024-05-29 09:24:16 +07:00

28 lines
892 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": "es5",
// TODO: These override ../tsconfig.base.json settings, and so should be removed if possible,
// but existing code in web/ breaks some of these settinsg
"noImplicitReturns": false,
"noImplicitAny": false,
"strictFunctionTypes": false,
"strictNullChecks": false,
// Other settings - declaration files, sourcemapping, and other miscellaneous bits.
"allowJs": false,
"declaration": true,
"experimentalDecorators": true,
"importHelpers": true,
"inlineSources": true,
"sourceMap": true,
}
}