build: enable 'noEmplicitAny' in tsconfg

This commit is contained in:
Corban-Lee Jones 2025-04-23 12:12:16 +01:00
parent d03dc8ed90
commit 7ff73fae28
2 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,8 @@
"outDir": "./public/js",
"rootDir": "./typescript",
"sourceMap": false,
"esModuleInterop": true
"esModuleInterop": true,
"noImplicitAny": true
},
"include": [
"./typescript/**/*"

View File

@ -20,7 +20,8 @@
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true
},
"include": [
"./src/*",