Fix mismatching function names

This commit is contained in:
schmelczerandras 2020-10-22 16:58:10 +02:00
parent f1a2131540
commit 6694e353ad
4 changed files with 30 additions and 15 deletions

View file

@ -1,4 +1,7 @@
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin').CleanWebpackPlugin;
const HtmlWebpackPlugin = require('html-webpack-plugin');
const TsConfigWebpackPlugin = require('ts-config-webpack-plugin');
const PATHS = {
entryPoint: path.resolve(__dirname, 'src/main.ts'),
@ -27,18 +30,15 @@ module.exports = (env, argv) => ({
optimization: {
minimize: false,
},
plugins: [],
module: {
rules: [
{
test: /\.ts$/,
use: {
loader: 'ts-loader',
},
exclude: /node_modules/,
},
],
},
plugins: [
// Cleans the dist folder before the build starts
new CleanWebpackPlugin(),
// Generate a base html file and injects all generated css and js files
new HtmlWebpackPlugin(),
// Multi threading typescript loader configuration with caching for .ts and .tsx files
// see https://github.com/namics/webpack-config-plugins/tree/master/packages/ts-config-webpack-plugin/config
new TsConfigWebpackPlugin(),
],
resolve: {
extensions: ['.ts'],
},