mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 10:55: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.
21 lines
369 B
JSON
21 lines
369 B
JSON
{
|
|
"extends": "../../../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "none",
|
|
"outFile": "./build/index.js",
|
|
"sourceMap": true,
|
|
"lib": ["es6"],
|
|
"target": "es5",
|
|
},
|
|
"references": [
|
|
{ "path": "../../web/utils" },
|
|
{ "path": "../types" }
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"test"
|
|
]
|
|
}
|