From fa2919bbcce3dd0f39f0a76afc57f93d4a8c3bbc Mon Sep 17 00:00:00 2001 From: Richard Steinmetz Date: Mon, 19 Feb 2024 19:22:24 +0100 Subject: [PATCH] chore: cleanup webpack config All 3 changes were upstreamed to the shared config lib in the meantime. Signed-off-by: Richard Steinmetz --- webpack.config.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 458d70d2..91ee5634 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -12,18 +12,6 @@ webpackRules.RULE_SVG = { } webpackConfig.module.rules = Object.values(webpackRules) -webpackConfig.module.rules.push({ - test: /\.tsx?$/, - use: 'ts-loader', - exclude: /node_modules/, -}) - -webpackConfig.resolve.extensions = ['.js', '.vue', '.ts', '.tsx'] - webpackConfig.resolve.fallback = { fs: false } -webpackConfig.resolve.alias = { - vue$: 'vue/dist/vue.esm.js', -} - module.exports = webpackConfig