Make Typescript a bit more strict (#45)

This commit is contained in:
Ian Flanigan 2020-11-16 02:54:37 +01:00 committed by GitHub
parent f1b6c51ce7
commit d4478873dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,9 @@
"allowSyntheticDefaultImports": true,
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"moduleResolution": "node",
"sourceMap": true,
"strictNullChecks": true,