mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 19:05:31 +00:00
19 lines
605 B
JSON
19 lines
605 B
JSON
{
|
|
// While the actual references themselves are headless, it compiles against the DOM-reliant OSK module.
|
|
"extends": "../../tsconfig.dom.json",
|
|
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "../../../build/engine/paths/obj/",
|
|
"tsBuildInfoFile": "../../../build/engine/paths/obj/tsconfig.tsbuildinfo",
|
|
"rootDir": "./src"
|
|
},
|
|
|
|
"include": [ "**/*.ts" ],
|
|
|
|
"references": [
|
|
// We want OSK to be free from the need to reference this child project for its paths definitions.
|
|
// There are a number of extra components here the OSK doesn't need.
|
|
{ "path": "../osk" }
|
|
]
|
|
}
|