mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +00:00
29 lines
624 B
JSON
29 lines
624 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"sourceMap": true,
|
|
"outDir": "build/src/",
|
|
"rootDir": "src/",
|
|
"baseUrl": ".",
|
|
|
|
"declaration": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"noUnusedLocals": true,
|
|
"allowJs": true,
|
|
"lib": ["es2022"],
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../../../common/web/keyman-version" },
|
|
{ "path": "../common/web/utils" },
|
|
]
|
|
}
|