fix(package): no implicit any

This commit is contained in:
Luke
2023-09-16 10:37:14 +02:00
parent abfacee33c
commit 61e3ba9904
4 changed files with 8 additions and 10 deletions

View File

@@ -9,14 +9,12 @@
"target": "ESNext",
"allowJs": false,
"lib": ["ESNext"],
"noEmitOnError": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"noImplicitAny": false,
"noEmit": false
"noImplicitAny": true
},
"include": ["client", "server", "shared"],
"exclude": ["**/node_modules"]