spiegel-keyman/common/web/lm-worker/tsconfig.json
2023-06-14 08:16:15 +07:00

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"
]
}