From 276a0ae4041b2559821cf3b20d9c9404de1ec7b6 Mon Sep 17 00:00:00 2001 From: anime Date: Tue, 1 Apr 2025 16:44:53 +0800 Subject: [PATCH] build(tsconfig): update tsconfig to exclude the public directory Closes #3279 --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index fe258e69..53512028 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -32,5 +32,8 @@ "**/*.jsx", ".eslintrc.js" ], - "exclude": ["node_modules"] + "exclude": [ + "node_modules", + "public" + ] }