From 50b915420ca82fcdd8f57b08cb0ba099cb58b460 Mon Sep 17 00:00:00 2001 From: aojunhao123 <1844749591@qq.com> Date: Tue, 3 Jun 2025 18:40:30 +0800 Subject: [PATCH] chore(config): remove HMR setting and update TypeScript exclusion rules in configuration files (#53989) --- mako.config.json | 1 - scripts/tsconfig.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/mako.config.json b/mako.config.json index 2f59cc647c..e23f587484 100644 --- a/mako.config.json +++ b/mako.config.json @@ -9,7 +9,6 @@ "watch": { "_nodeModulesRegexes": ["rc-.*"] }, - "hmr": false, "devtool": false, "experimental": { "magicComment": true diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json index 7be722c4e5..de8bac4a7e 100644 --- a/scripts/tsconfig.json +++ b/scripts/tsconfig.json @@ -18,5 +18,5 @@ "skipLibCheck": true }, "include": ["./"], - "exclude": ["**/node_modules"] + "exclude": ["**/node_modules", "**/*.js"] }