mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-14 04:39:23 +00:00
23 lines
651 B
JSON
23 lines
651 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": "../../../../../common/models/types" },
|
|
{ "path": "../../../../../common/web/web-environment/" },
|
|
{ "path": "../../../../../common/core/web/utils/" }
|
|
],
|
|
"include": ["./**/*.ts"],
|
|
"files": ["text/outputTarget.ts", "text/keyboardProcessor.ts"]
|
|
}
|