mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-29 11:47:39 +00:00
Consolidates project loading code from kmc and kmc-copy, in preparation for kmc-test epic. This leaves open a change we need to make to CompilerCallbacks, to consolidate the fsAsync and net callbacks into CompilerCallbacks as a first-class part of CompilerCallbacks. We will then need to start to move all the fs and net callback interactions to the async model across all kmc modules, at some point.
27 lines
649 B
JSON
27 lines
649 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
|
"outDir": "build/src/",
|
|
"rootDir": "src/",
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
"@keymanapp/keyman-version": ["../../../common/web/keyman-version/keyman-version.mts"],
|
|
"@keymanapp/common-types": ["../../../common/web/types/src/main"],
|
|
"@keymanapp/developer-utils": ["../common/web/utils"],
|
|
},
|
|
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
],
|
|
"exclude": [
|
|
"src/template/**/*.ts",
|
|
],
|
|
"references": [
|
|
{ "path": "../../../common/web/keyman-version" },
|
|
{ "path": "../../../common/web/types/" },
|
|
{ "path": "../common/web/utils/" },
|
|
]
|
|
}
|