refactor(build): use webpack es6 imports

This commit is contained in:
Daniel Sogl 2021-09-27 20:50:33 +02:00
parent 31ffbfe978
commit 04137f44ba

View File

@ -2,7 +2,7 @@ import { readJSONSync, writeFileSync } from 'fs-extra';
import { resolve } from 'path'; import { resolve } from 'path';
import * as TerserPlugin from 'terser-webpack-plugin'; import * as TerserPlugin from 'terser-webpack-plugin';
import * as unminifiedPlugin from 'unminified-webpack-plugin'; import * as unminifiedPlugin from 'unminified-webpack-plugin';
import * as webpack from 'webpack'; import { Configuration, DefinePlugin, ProvidePlugin, webpack } from 'webpack';
import { ROOT } from '../build/helpers'; import { ROOT } from '../build/helpers';
import { cleanEmittedData, EMIT_PATH, InjectableClassEntry } from '../build/transformers/extract-injectables'; import { cleanEmittedData, EMIT_PATH, InjectableClassEntry } from '../build/transformers/extract-injectables';
@ -20,7 +20,7 @@ const INJECTABLE_CLASSES = readJSONSync(EMIT_PATH).map((item: InjectableClassEnt
return item; return item;
}); });
const webpackConfig: webpack.Configuration = { const webpackConfig: Configuration = {
mode: 'production', mode: 'production',
entry: INDEX_PATH, entry: INDEX_PATH,
devtool: 'source-map', devtool: 'source-map',
@ -45,10 +45,10 @@ const webpackConfig: webpack.Configuration = {
], ],
}, },
plugins: [ plugins: [
new webpack.ProvidePlugin({ new ProvidePlugin({
__extends: ['tslib', '__extends'], __extends: ['tslib', '__extends'],
}), }),
new webpack.DefinePlugin({ new DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production'), 'process.env.NODE_ENV': JSON.stringify('production'),
}), }),
new unminifiedPlugin(), new unminifiedPlugin(),