This is an automated email from the ASF dual-hosted git repository.
hainenber pushed a commit to branch
build/remove-redundant-type-check-in-webpack-build
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to
refs/heads/build/remove-redundant-type-check-in-webpack-build by this push:
new 3c37633f6a6 chore: revamp comments regarding removal of
fork-ts-checker-webpack-plugin
3c37633f6a6 is described below
commit 3c37633f6a63a2c56232e72308100e4d02279302
Author: hainenber <[email protected]>
AuthorDate: Thu Feb 19 10:22:35 2026 +0700
chore: revamp comments regarding removal of fork-ts-checker-webpack-plugin
Signed-off-by: hainenber <[email protected]>
---
superset-frontend/webpack.config.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/superset-frontend/webpack.config.js
b/superset-frontend/webpack.config.js
index 40520ee8df9..84eb48b8ce2 100644
--- a/superset-frontend/webpack.config.js
+++ b/superset-frontend/webpack.config.js
@@ -217,10 +217,10 @@ if (!isDevMode) {
}
// TypeScript type checking configuration
-// SWC handles transpilation. In production, type checking is done by:
+// SWC handles transpilation. For Superset, type checking is done by:
// 1. `npm run plugins:build` which generates .d.ts files
// 2. `npm run type` which runs full TypeScript checking
-// We skip ForkTsCheckerWebpackPlugin in production because:
+// We skip ForkTsCheckerWebpackPlugin because:
// - Story files import from @storybook-shared which causes rootDir errors
// - The above commands already provide comprehensive type checking