spiegel-keyman/web/src/engine/paths/tsconfig.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" }
]
}