diff --git a/apps/login/__test__/tsconfig.json b/apps/login/__test__/tsconfig.json index 958be41e55f..11ad984ef1d 100644 --- a/apps/login/__test__/tsconfig.json +++ b/apps/login/__test__/tsconfig.json @@ -2,15 +2,6 @@ "extends": "../tsconfig.json", "compilerOptions": { "jsx": "react-jsxdev", - "types": [ - "node", - "jest", - "@testing-library/jest-dom" - ] - }, - "exclude": [ - "../cypress", - "../cypress.config.ts", - "../node_modules" - ] -} \ No newline at end of file + "types": ["node", "jest", "@testing-library/jest-dom"] + } +} diff --git a/apps/login/jest.config.ts b/apps/login/jest.config.ts index 032aca57459..242642494af 100644 --- a/apps/login/jest.config.ts +++ b/apps/login/jest.config.ts @@ -14,6 +14,6 @@ export default async (): Promise => { }), testEnvironment: "jsdom", testRegex: "/__test__/.*\\.test\\.tsx?$", - modulePathIgnorePatterns: ["cypress"] + modulePathIgnorePatterns: ["cypress"], }; }; diff --git a/apps/login/tsconfig.json b/apps/login/tsconfig.json index 8f5ef2d77f2..26ab2bab2ad 100755 --- a/apps/login/tsconfig.json +++ b/apps/login/tsconfig.json @@ -5,9 +5,7 @@ "rootDir": ".", "baseUrl": ".", "paths": { - "#/*": [ - "./*" - ] + "#/*": ["./*"] }, "plugins": [ { @@ -15,13 +13,6 @@ } ] }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - ".next/types/**/*.ts" - ], - "exclude": [ - "node_modules" - ] -} \ No newline at end of file + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +}