Make strict

This commit is contained in:
Andras Schmelczer 2025-02-20 22:21:07 +00:00
parent 0e0700821d
commit 010b3d61e9
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 6 additions and 6 deletions

View file

@ -3,9 +3,9 @@
"baseUrl": ".",
"module": "ESNext",
"target": "ES2023",
"noImplicitAny": true,
"moduleResolution": "bundler",
"strictNullChecks": true,
"strict": true,
"lib": ["DOM", "ESNext"]
}
},
"exclude": ["./dist"]
}

View file

@ -3,10 +3,10 @@
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"noImplicitAny": true,
"strict": true,
"moduleResolution": "bundler",
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"lib": ["DOM", "ESNext"]
}
},
"exclude": ["./dist"]
}