diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js index d11580cf..ad2ddfd6 100644 --- a/frontend/webpack.config.js +++ b/frontend/webpack.config.js @@ -65,6 +65,7 @@ const version = (() => { return packageJSON.version; })(); +/** @type {import('webpack').Configuration} */ const main = { entry: "./src/index.ts", output: { @@ -125,7 +126,9 @@ const main = { maxChunks: 12, }), - new ForkTsCheckerWebpackPlugin(), + new ForkTsCheckerWebpackPlugin({ + typescript: { configOverwrite: { exclude: ["**/*.test.ts"] } }, + }), new HtmlWebpackPlugin({ template: "src/index.ejs",