spiegel-keyman/common/predictive-text/src/node/tsconfig.json

20 lines
No EOL
567 B
JSON

{
"extends": "../../../web/tsconfig.kmw-main-base.json",
"compilerOptions": {
// The Worker class needs access to the `new` keyword, else Node will throw an
// error when constructing the Worker for unit tests. ES6 is sufficient.
"target": "ES6",
"types": ["node"],
"baseUrl": "../",
"outDir": "../../build/obj",
"tsBuildInfoFile": "../../build/obj/node/tsconfig.tsbuildinfo",
"rootDir": "../"
},
"include": [
"*.ts"
],
"references": [
{ "path": "../tsconfig.json" },
{ "path": "../../../web/lm-worker" }
]
}