From 3a33284694acdf43f7320b726485073ac636b171 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 17 Sep 2023 13:29:00 -0500 Subject: [PATCH] Fix theme config missing from tsconfig --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 575ca2b..f54d304 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,6 @@ "isolatedModules": true, "jsx": "preserve" }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "include": ["next-env.d.ts", "theme.config.tsx", "**/*.ts", "**/*.tsx"], "exclude": ["node_modules"] }