Enable noUncheckedSideEffectImports

This catches errors such as:

```ts
import 'vs/editor/noSuchFile';
```

Previously these were unreported
This commit is contained in:
Matt Bierner
2024-08-08 09:17:36 -07:00
parent 4a7a65c55b
commit 8baabefe85
2 changed files with 9 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUncheckedSideEffectImports": true,
"allowUnreachableCode": false,
"strict": true,
"exactOptionalPropertyTypes": false,