Fix: Disable noImplicitAny until the admin app can be typed

This commit is contained in:
Gustav Hansen 2023-08-11 10:36:19 +02:00
parent 3a01852244
commit 91aa969a19
2 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
{
"extends": "tsconfig/client.json",
"compilerOptions": {
"noEmit": false,
"noImplicitAny": true,
"outDir": "dist",
"noEmit": false
},
"include": ["src", "./custom.d.ts"],
"exclude": ["node_modules", "**/__tests__/**"]

View File

@ -11,7 +11,7 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noImplicitAny": true,
"noImplicitAny": false,
"strict": true,
"allowJs": true,
"sourceMap": true,