diff --git a/tsconfig.json b/tsconfig.json index c1799d1..e4bdb45 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,19 +10,21 @@ "sourceMap": true, "allowJs": true, "jsx": "preserve", - "moduleResolution": "node", "rootDir": "src", "forceConsistentCasingInFileNames": true, - "noImplicitReturns": true, - "noImplicitThis": true, - "noImplicitAny": true, - "strictNullChecks": true, - "suppressImplicitAnyIndexErrors": true, "noUnusedLocals": true, + "moduleResolution": "node", "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": false, + "noImplicitReturns": true, + "noImplicitAny": true, + "noImplicitThis": true, + "noUnusedParameters": false, + "strictNullChecks": true, + "strictBindCallApply": true, + "suppressImplicitAnyIndexErrors": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true