diff options
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 6 |
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" }, ], |
