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