diff --git a/tsconfig.json b/tsconfig.json index 29a46ef..abaf9b4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,6 @@ "sourceMap": true, "outDir": "./dist", "rootDir": "./", - "moduleResolution": "node", "removeComments": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true, @@ -16,7 +15,10 @@ "typeRoots": ["./src/types", "./node_modules/@types"], // "baseUrl": "src/", "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "strict": false, + "noImplicitAny": false, + "strictNullChecks": false }, "include": ["src/swagger-output.json", "src/langs/json/*.json", "./src/**/*.tsx", "./src/**/*.ts"], "exclude": ["node_modules", "test/**/*.ts"]