mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-15 21:29:23 +00:00
20 lines
No EOL
567 B
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" }
|
|
]
|
|
} |