mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-14 20:59:25 +00:00
30 lines
No EOL
891 B
JSON
30 lines
No EOL
891 B
JSON
{
|
|
// Due to the heterogenous target mix supported by the LMLayer, the two different "worker" types
|
|
// require separate sub-tsconfigs, both of which require common references. The multi-config
|
|
// setup in this project and its subfolders ensure all modules can compile cleanly and in the
|
|
// necessary compilation order.
|
|
"extends": "../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"module": "es6",
|
|
"moduleResolution": "Node16",
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"sourceRoot": "keyman",
|
|
"target": "es5",
|
|
"lib": ["es6"],
|
|
"types": ["node"],
|
|
"baseUrl": "./",
|
|
"outDir": "build",
|
|
"tsBuildInfoFile": "build/tsconfig.all.tsbuildinfo",
|
|
"rootDir": "./src"
|
|
},
|
|
"files": [],
|
|
"references": [
|
|
{ "path": "app/browser" },
|
|
{ "path": "app/webview" },
|
|
{ "path": "app/ui" }
|
|
],
|
|
} |