mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 17:05:34 +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.
25 lines
612 B
JSON
25 lines
612 B
JSON
{
|
|
"extends": "../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"inlineSources": true,
|
|
"module": "none",
|
|
"outFile": "../release/renderer/bulk_render.js",
|
|
"sourceMap": true,
|
|
"target": "es5"
|
|
},
|
|
|
|
"files": [
|
|
"renderer_core.ts",
|
|
"../source/kmwdevice.ts",
|
|
"../source/utils/styleConstants.ts",
|
|
],
|
|
|
|
"references": [
|
|
{ "path": "../../common/web/utils", "prepend": true },
|
|
{ "path": "../../common/web/web-environment", "prepend": true },
|
|
{ "path": "../../common/web/es6-shim", "prepend": true },
|
|
{ "path": "../../common/web/lm-message-types" },
|
|
]
|
|
}
|