mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 09:25:33 +00:00
21 lines
587 B
JSON
21 lines
587 B
JSON
{
|
|
"extends": "../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"],
|
|
"module": "es6",
|
|
"moduleResolution": "Node16",
|
|
"target": "es5",
|
|
|
|
// Other settings - declaration files, sourcemapping, and other miscellaneous bits.
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
}
|
|
}
|