From f0d23d13d431d4483417bd2a2210a6d4c131996b Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Wed, 13 Oct 2021 01:53:36 +0800 Subject: [PATCH] chore: do not include auto-imported types for monorepo (#820) --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 6321141b31..bb90a7ff8c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,6 +25,8 @@ } }, "exclude": [ - "**/*/dist/*" + "**/*/dist/*", + "**/.nuxt/**", + "**/nuxt.d.ts" ] }