mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 18:05:32 +00:00
27 lines
559 B
JSON
27 lines
559 B
JSON
{
|
|
"extends": "../../../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "es6",
|
|
"moduleResolution": "Node16",
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"target": "es5",
|
|
"tsBuildInfoFile": "./build/obj/tsconfig.tsbuildinfo",
|
|
"types": ["node"],
|
|
"lib": ["es6"],
|
|
"baseUrl": "./",
|
|
"outDir": "./build/obj/",
|
|
"rootDir": "./src"
|
|
},
|
|
"references": [
|
|
{ "path": "../keyman-version"}
|
|
],
|
|
"include": [
|
|
"src/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/test/**/*.js"
|
|
]
|
|
}
|