mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 17:36:00 +00:00
27 lines
689 B
JSON
27 lines
689 B
JSON
{
|
|
"extends": "../../../../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "none",
|
|
"outDir": "../build/",
|
|
"declaration": true,
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"sourceRoot": "keyman/",
|
|
"target": "es5",
|
|
"types": ["node"],
|
|
"lib": ["es6"],
|
|
"outFile": "../build/index.js"
|
|
},
|
|
"references": [
|
|
{ "path": "../../keyman-version" },
|
|
{ "path": "../../utils" },
|
|
{ "path": "../../keyboard-processor/src" },
|
|
{ "path": "../../../predictive-text/browser.tsconfig.json" },
|
|
],
|
|
"include": ["./**/*.ts"],
|
|
"files": [
|
|
"text/inputProcessor.ts",
|
|
"../../../../node_modules/eventemitter3/index.js"
|
|
]
|
|
}
|