Skip to content

Commit

Permalink
chore: partially activate strict mode (#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 authored Mar 21, 2022
1 parent 15d4e2e commit fbb3e7d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@
"outDir": "dist",
"declaration": true,
"esModuleInterop": true,
"allowJs": true
"allowJs": true,
"alwaysStrict": true,
// "strictNullChecks": true,
// "strictBindCallApply": true,
"strictFunctionTypes": true,
// "strictPropertyInitialization": true,
// "noImplicitAny": true,
// "noImplicitThis": true,
"useUnknownInCatchVariables": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
Expand Down

0 comments on commit fbb3e7d

Please sign in to comment.