mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +00:00
24 lines
399 B
JSON
24 lines
399 B
JSON
{
|
|
"extends": "../../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
"module": "none",
|
|
"lib": ["es6"],
|
|
"target": "es5",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"outFile": "./build/index.js",
|
|
"strict": true,
|
|
"allowJs": false,
|
|
},
|
|
"references": [
|
|
{ "path": "../types" }
|
|
],
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test/**/*.ts"
|
|
]
|
|
}
|