spiegel-keyman/web/source/tsconfig.embedded.json
Marc Durdin 05a4c33200 chore(web): move common/core/web to common/web
Relates to #5816.

Moves folders under common/core/web to common/web:

* input-processor -> common/web/input-processor
* keyboard-processor -> common/web/keyboard-processor
* tools/recorder -> common/web/recorder
* tools/sentry-manager -> common/web/sentry-manager
* utils -> common/web/utils

Updates scripts and configuration to point to new folders.
2022-05-18 06:01:03 +10:00

39 lines
1,013 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outFile": "../intermediate/keyman.js"
},
"include": [
"./*.ts",
"./**/*.ts"
],
"files": [
"kmwbase.ts",
"keymanweb.ts",
"kmwembedded.ts",
"kmwinit.ts",
"kmwapi.ts"
],
"exclude": [
"./kmwnative.ts",
"./kmwuibutton.ts",
"./kmwuifloat.ts",
"./kmwuitoggle.ts",
"./kmwuitoolbar.ts",
],
"references": [
{ "path": "../../common/web/web-environment", "prepend": true },
{ "path": "../../common/web/utils", "prepend": true },
{ "path": "../../common/predictive-text/browser.tsconfig.json", "prepend": true },
{ "path": "../../common/web/input-processor/src", "prepend": true },
{ "path": "../../common/web/keyboard-processor/src", "prepend": true },
{ "path": "../../common/web/es6-shim", "prepend": true },
{ "path": "../../common/web/lm-message-types" },
{ "path": "../../common/web/sentry-manager/src" }, // We don't prepend this, because it will be loaded separately
]
}