mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-11 18:17:42 +00:00
25 lines
588 B
JSON
25 lines
588 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": ["DOM", "es6"],
|
|
"outFile": "build/index.js"
|
|
},
|
|
"references": [
|
|
// { "path": "../../keyman-version" },
|
|
// { "path": "../../utils" },
|
|
],
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": ["./src/tools/**/*.ts"],
|
|
"files": [
|
|
"../../../node_modules/eventemitter3/index.js"
|
|
]
|
|
}
|