mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 17:36:00 +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.
27 lines
598 B
JSON
27 lines
598 B
JSON
{
|
|
"extends": "../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"outFile": "build/headless.js",
|
|
"module": "none",
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"lib": ["es6"]
|
|
},
|
|
"references": [
|
|
{ "path": "../web/utils" },
|
|
{ "path": "../web/es6-shim" },
|
|
{ "path": "../models/types"},
|
|
{ "path": "../models/wordbreakers"},
|
|
{ "path": "../web/lm-message-types"},
|
|
{ "path": "../models/templates"},
|
|
],
|
|
"include" : [ "./*.ts" ],
|
|
"exclude" : [
|
|
"web-defaultWorker.ts",
|
|
"node_modules",
|
|
"testing"
|
|
]
|
|
}
|