mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
17 lines
601 B
JSON
17 lines
601 B
JSON
{
|
|
"extends": "../tsconfig.kmw-main-base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "build/obj/",
|
|
"tsBuildInfoFile": "build/obj/tsconfig.tsbuildinfo",
|
|
"rootDir": "./src"
|
|
},
|
|
"references": [
|
|
{ "path": "../utils" },
|
|
{ "path": "../keyboard-processor" },
|
|
{ "path": "../../predictive-text/tsconfig.all.json" },
|
|
],
|
|
// The extra .d.ts is necessary to avoid issues with lack of a Worker type definition when not including
|
|
// the standard DOM in the TS "lib" configuration.
|
|
"include": ["./src/**/*.ts", "../../predictive-text/src/worker-interface.d.ts"]
|
|
}
|