mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-28 03:07:43 +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.
23 lines
590 B
JSON
23 lines
590 B
JSON
{
|
|
"extends": "../../../../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "none",
|
|
"outDir": "../build/",
|
|
"declaration": true,
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"types": ["node"],
|
|
"lib": ["es6"],
|
|
"outFile": "../build/index.js",
|
|
"experimentalDecorators": true,
|
|
},
|
|
"references": [
|
|
{ "path": "../../../models/types" },
|
|
{ "path": "../../web-environment/" },
|
|
{ "path": "../../utils/" }
|
|
],
|
|
"include": ["./**/*.ts"],
|
|
"files": ["text/outputTarget.ts", "text/keyboardProcessor.ts"]
|
|
}
|