mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
26 lines
671 B
JSON
26 lines
671 B
JSON
{
|
|
"extends": "../../models/tsconfig.kmw-worker-base.json",
|
|
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "build/obj",
|
|
"tsBuildInfoFile": "build/obj/tsconfig.tsbuildinfo",
|
|
"rootDir": "./src/main",
|
|
|
|
// As this one is the one that directly interfaces with the worker (from the inside)
|
|
"lib": ["webworker", "es6"],
|
|
},
|
|
"references": [
|
|
// types
|
|
{ "path": "../../models/types" },
|
|
{ "path": "../lm-message-types" },
|
|
// modules
|
|
{ "path": "../keyman-version" },
|
|
{ "path": "../utils" },
|
|
{ "path": "../../models/templates" },
|
|
{ "path": "../../models/wordbreakers" },
|
|
],
|
|
"include": [
|
|
"src/main/**/*.ts"
|
|
]
|
|
}
|