spiegel-keyman/web/src/tsconfig.all.json
2023-05-18 10:07:28 +07:00

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" }
],
}