From 4f897712875de3d1f5ecf237a50873685042075b Mon Sep 17 00:00:00 2001 From: Nick Frostbutter <75431177+nickfrosty@users.noreply.github.com> Date: Fri, 11 Oct 2024 11:08:09 -0400 Subject: [PATCH] fix: exclude code dir (#557) --- tsconfig.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 811b9a6c6..d90767bb3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,20 +18,20 @@ "paths": { "contentlayer/generated": ["./.contentlayer/generated"], "@/*": ["./src/*"], - "@@/*": ["./*"] + "@@/*": ["./*"], }, "plugins": [ { - "name": "next" - } - ] + "name": "next", + }, + ], }, "include": [ ".contentlayer/generated", "next-env.d.ts", "**/*.ts", "**/*.tsx", - ".next/types/**/*.ts" + ".next/types/**/*.ts", ], - "exclude": ["node_modules"] + "exclude": ["node_modules", "code"], }