From c972b66aa28cfb9eed4ed55f7504ac7c379b4037 Mon Sep 17 00:00:00 2001 From: nullptr-0 <959220793@qq.com> Date: Tue, 29 Aug 2023 13:35:00 +0800 Subject: [PATCH] add build outDir to fix error in tsconfig.json --- tsconfig.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b8e44f8..28c39d5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -28,7 +28,8 @@ "dom.iterable", "scripthost" ], - "resolveJsonModule": true + "resolveJsonModule": true, + "outDir": "build" }, "include": [ "src/**/*.ts", @@ -38,6 +39,7 @@ "tests/**/*.tsx" ], "exclude": [ - "node_modules" + "node_modules", + "build/**/*" ] }