aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2026-01-28 18:13:07 +0100
committerGitHub <noreply@github.com>2026-01-28 18:13:07 +0100
commite18f2a46f3f4bfa7881b8cbc254c10f6eb570040 (patch)
tree022efa1e5c590302290b54999b813efc81c7358b /webpack.config.js
parent0e4d714c1a6042a448e699176c1fbc84a89393c4 (diff)
parentfe44f280dc6b80edbee09de1ddc4742feb46c46c (diff)
Merge pull request #289 from OmniTroid/esbuild
Esbuild
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js
index f31cb56..9a0064d 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -63,7 +63,11 @@ module.exports = {
},
},
},
- { test: /\.ts?$/, loader: "ts-loader" },
+ {
+ test: /\.ts$/,
+ loader: "esbuild-loader",
+ options: { loader: "ts" }
+ },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ test: /\.js$/, loader: "source-map-loader" },
],