spiegel-keyman/common/predictive-text/src/node/tsconfig.json
2023-02-16 16:05:45 +07:00

26 lines
No EOL
596 B
JSON

{
"extends": "../../../../tsconfig-base.json",
"compilerOptions": {
"allowJs": false,
"declaration": true,
"module": "es6",
"moduleResolution": "Node16",
"inlineSources": true,
"sourceMap": true,
"sourceRoot": "keyman",
"target": "es5",
"lib": ["es6"],
"types": ["node"],
"baseUrl": "../",
"outDir": "../../build/obj",
"tsBuildInfoFile": "../../build/obj/node/tsconfig.tsbuildinfo",
"rootDir": "../"
},
"include": [
"*.ts"
],
"references": [
{ "path": "../tsconfig.json" },
{ "path": "../../../web/lm-worker" }
]
}