mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
Removes the need for package.json references for @keymanapp/web-utils, and relies on bundler to include keyman/common/web-utils when building.
29 lines
816 B
JSON
29 lines
816 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,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
// Note: this overrides paths in ../tsconfig.base.json
|
|
"keyman/common/web-utils": ["./src/common/web-utils/src/index.js"],
|
|
"keyman/engine/*": ["./src/engine/src/*/index.js"],
|
|
},
|
|
|
|
}
|
|
}
|