mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
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.
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"extends": "../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"inlineSources": true,
|
|
"module": "none",
|
|
"outFile": "../release/dev_resources/dev_resources.js",
|
|
"sourceMap": true,
|
|
"target": "es5"
|
|
},
|
|
|
|
"files": [
|
|
"dom/targets/wrapElement.ts",
|
|
"dom/targets/input.ts",
|
|
"dom/targets/textarea.ts",
|
|
"dom/targets/contentEditable.ts",
|
|
"dom/targets/designIFrame.ts",
|
|
"dom/targets/touchAlias.ts",
|
|
"dom/targets/outputTarget.ts",
|
|
"dom/touchAliasElement.ts",
|
|
"kmwexthtml.ts",
|
|
"kmwdevice.ts",
|
|
"dom/utils.ts",
|
|
"utils/styleConstants.ts",
|
|
"kmwtypedefs.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/lm-message-types" }
|
|
]
|
|
}
|