mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
26 lines
565 B
JSON
26 lines
565 B
JSON
{
|
|
"extends": "../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist/",
|
|
"rootDir": "src/",
|
|
"declaration": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"noUnusedLocals": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../../common/web/keyman-version" }
|
|
]
|
|
}
|