From 6dc5e2d877156dbe17b9dd7530201aadcdb70cd4 Mon Sep 17 00:00:00 2001 From: Gareth Fuller Date: Wed, 18 Sep 2024 14:51:33 +0100 Subject: [PATCH] chore: Move things about --- types/global-ts.d.ts => global.d.ts | 0 lib/shared/components/marketing/HomeHero.tsx | 6 +++--- tsconfig.json | 8 +------- 3 files changed, 4 insertions(+), 10 deletions(-) rename types/global-ts.d.ts => global.d.ts (100%) diff --git a/types/global-ts.d.ts b/global.d.ts similarity index 100% rename from types/global-ts.d.ts rename to global.d.ts diff --git a/lib/shared/components/marketing/HomeHero.tsx b/lib/shared/components/marketing/HomeHero.tsx index d7f5d3945..9b45f0181 100644 --- a/lib/shared/components/marketing/HomeHero.tsx +++ b/lib/shared/components/marketing/HomeHero.tsx @@ -137,12 +137,12 @@ export function HomeHero() { -
+
diff --git a/tsconfig.json b/tsconfig.json index a68881af4..466ba786b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -24,12 +24,6 @@ }, "types": ["vitest/globals"] }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - ".next/types/**/*.ts", - "types/global-ts.d.ts" - ], + "include": ["global.d.ts", "next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"], "exclude": ["node_modules", ".next"] }