From 33709625bc2317090914a4ff310a5ad467d403b1 Mon Sep 17 00:00:00 2001 From: Aelita Date: Wed, 10 Jul 2024 00:51:32 +1000 Subject: [PATCH] chore: fix tsconfig issue --- tsconfig.json | 3 ++- tsconfig.node.json | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 02317b4..e59ecf0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,8 +15,9 @@ } }, "include": [ - "include", + "src", "test", + "docs", "**/.vitepress/**/*.ts", "**/.vitepress/**/*.vue" ] diff --git a/tsconfig.node.json b/tsconfig.node.json index 4418287..e341a72 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -9,5 +9,10 @@ "noUncheckedIndexedAccess": true, "noEmit": true }, - "include": ["vitest.config.ts"] + "include": [ + "build.config.ts", + "changelogithub.config.ts", + "eslintConfig.ts", + "vitest.config.ts" + ] }