mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-19 14:17:40 +00:00
chore(web): reduce strictness on ts
This commit is contained in:
parent
3f21f65c43
commit
6cfcf08f3f
1 changed files with 10 additions and 0 deletions
|
|
@ -1,14 +1,24 @@
|
|||
{
|
||||
"extends": "../tsconfig.base.json",
|
||||
|
||||
// TODO: eliminate settings duplicated in ../tsconfig.base.json
|
||||
"compilerOptions": {
|
||||
// Primary settings - the version of ES6 we can target in TS, our downcompile target,
|
||||
// and our module-related settings.
|
||||
"allowSyntheticDefaultImports": true,
|
||||
|
||||
"lib": ["es6"],
|
||||
"module": "es6",
|
||||
"target": "es5",
|
||||
|
||||
// TODO: These override ../tsconfig.base.json settings, and so should be removed if possible,
|
||||
// but existing code in web/ breaks some of these settinsg
|
||||
"noImplicitThis": false,
|
||||
"noImplicitReturns": false,
|
||||
"noImplicitAny": false,
|
||||
"strictFunctionTypes": false,
|
||||
"noUnusedLocals": false,
|
||||
|
||||
// Other settings - declaration files, sourcemapping, and other miscellaneous bits.
|
||||
"allowJs": false,
|
||||
"declaration": true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue