mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 09:55:32 +00:00
24 lines
618 B
JSON
24 lines
618 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",
|
|
"experimentalDecorators": true,
|
|
},
|
|
"references": [
|
|
{ "path": "../../../models/types" },
|
|
{ "path": "../../keyman-version/" },
|
|
{ "path": "../../utils/" }
|
|
],
|
|
"include": ["./**/*.ts"],
|
|
"files": ["text/outputTarget.ts", "text/keyboardProcessor.ts"]
|
|
}
|