Enable strict mode

This commit is contained in:
schmelczerandras 2020-11-22 21:18:40 +01:00
parent 6575e9bcf7
commit d07102077f
2 changed files with 4 additions and 2 deletions

View file

@ -24,6 +24,7 @@
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off"
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}

View file

@ -5,7 +5,8 @@
"module": "es6",
"target": "es5",
"sourceMap": true,
"strict": true,
"allowJs": true,
"downlevelIteration": true
"lib": ["dom", "es2017"]
}
}