diff --git a/apps/etherscan/tsconfig.app.json b/apps/etherscan/tsconfig.app.json index 62d6d52c3d..af84f21cfc 100644 --- a/apps/etherscan/tsconfig.app.json +++ b/apps/etherscan/tsconfig.app.json @@ -5,10 +5,19 @@ "types": ["node"] }, "files": [ - "../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nrwl/react/typings/image.d.ts" ], - "exclude": ["**/*.spec.ts", "**/*.spec.tsx"], + "exclude": [ + "jest.config.ts", + "**/*.spec.ts", + "**/*.test.ts", + "**/*.spec.tsx", + "**/*.test.tsx", + "**/*.spec.js", + "**/*.test.js", + "**/*.spec.jsx", + "**/*.test.jsx" + ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/apps/etherscan/tsconfig.json b/apps/etherscan/tsconfig.json index a3e71f89f3..5aab5e7911 100644 --- a/apps/etherscan/tsconfig.json +++ b/apps/etherscan/tsconfig.json @@ -4,11 +4,7 @@ "jsx": "react-jsx", "allowJs": true, "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true + "allowSyntheticDefaultImports": true }, "files": [], "include": [], @@ -17,4 +13,4 @@ "path": "./tsconfig.app.json" } ] -} \ No newline at end of file +}