spiegel-keyman/web/src/tsconfig.all.json

30 lines
No EOL
885 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/embed" },
{ "path": "app/web" },
{ "path": "app/ui" }
],
}