diff options
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/webpack.config.js b/webpack.config.js index a845375..1cd05df 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -17,19 +17,20 @@ config = { filename: '[name].js' }, + optimization: { + minimize: false + }, + + performance: { + hints: false + }, + module: { rules: [ { - test: [ /\.js$/, /\.jsx$/, /\.ts$/, /\.tsx$/], + test: [ /\.ts$/, /\.tsx$/], exclude: /node_modules/, - loader: 'babel-loader', - options: { - presets: [ - { plugins: ['@babel/plugin-proposal-class-properties'] }, - '@babel/react', - '@babel/preset-typescript' - ] - }, + loader: 'ts-loader' }, { test: /\.css$/, |