Enable strict mode checks with typescript-strict-plugin

No CI checks at this time, the only effect this will have is adding IDE errors.
This commit is contained in:
Robin Townsend
2022-09-15 08:29:55 -04:00
parent 1f485bfd55
commit f0d7d8fac6
3 changed files with 148 additions and 9 deletions

View File

@@ -8,7 +8,14 @@
"noImplicitAny": false,
"noUnusedLocals": true,
"jsx": "preserve",
"lib": ["es2020", "dom", "dom.iterable"]
"lib": ["es2020", "dom", "dom.iterable"],
"strict": false,
"plugins": [
{
"name": "typescript-strict-plugin",
"paths": ["src"]
}
]
},
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
}