mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-16 04:37:41 +00:00
Also splits the root tsconfig.json into tsconfig.cjs.json and tsconfig.esm.json. These are not typically used at present but in theory you could do a `tsc -b <tsconfig.x.json>` and build all modules. In practice, we still have some prebuild steps that make that a bit of a pain.
24 lines
No EOL
1,015 B
JSON
24 lines
No EOL
1,015 B
JSON
{
|
|
// Lists only ES modules; as we move modules from cjs/none to esm, we should
|
|
// move them from tsconfig.cjs.json to here. Eventually, when we have only ES
|
|
// modules, we can rename this to tsconfig.json.
|
|
"files": [],
|
|
"include": [],
|
|
"references": [
|
|
{ "path": "./core/include/ldml/tsconfig.json" },
|
|
|
|
//{ "path": "./developer/src/kmc/test/tsconfig.json" },
|
|
{ "path": "./developer/src/kmc/tsconfig.json" },
|
|
|
|
{ "path": "./developer/src/kmc-keyboard/test/tsconfig.json" },
|
|
{ "path": "./developer/src/kmc-keyboard/tsconfig.json" },
|
|
{ "path": "./developer/src/kmc-model/test/tsconfig.json" },
|
|
{ "path": "./developer/src/kmc-model/tsconfig.json" },
|
|
//{ "path": "./developer/src/kmc-model-info/test/tsconfig.json" },
|
|
{ "path": "./developer/src/kmc-model-info/tsconfig.json" },
|
|
{ "path": "./developer/src/kmc-package/test/tsconfig.json" },
|
|
{ "path": "./developer/src/kmc-package/tsconfig.json" },
|
|
|
|
{ "path": "./common/web/keyman-version/tsconfig.esm.json" },
|
|
]
|
|
} |