mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-17 13:17:39 +00:00
Starts to resolve the chaos of putting version numbers into every package.json file. Adds a new keyman-version package which mimics the version information in build-utils.sh. This will eventually replace resources/web-environment. Fixes the build for the lexical model compiler tools to remove refs to package.json version and use keyman-version instead. More fixes coming in a follow-up.
28 lines
693 B
JSON
28 lines
693 B
JSON
{
|
|
"extends": "../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
//"module": "commonjs",
|
|
"target": "es2017",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"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" },
|
|
]
|
|
}
|