mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 10:55:33 +00:00
21 lines
369 B
JSON
21 lines
369 B
JSON
{
|
|
"extends": "../../../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "none",
|
|
"outFile": "./build/index.js",
|
|
"sourceMap": true,
|
|
"lib": ["es6"],
|
|
"target": "es5",
|
|
},
|
|
"references": [
|
|
{ "path": "../../web/utils" },
|
|
{ "path": "../types" }
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"test"
|
|
]
|
|
}
|