Removes unnecessary warnings from webpack output about missing exports

This should not break anything as ForkTsCheckerWebpackPlugin takes care of that
This commit is contained in:
Dominik Prokop
2019-01-09 11:33:08 +01:00
parent a9808ef518
commit 0571ad5ad7
2 changed files with 24 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const IgnoreNotFoundExportPlugin = require("./IgnoreNotFoundExportPlugin.js");
module.exports = merge(common, {
entry: {
@@ -111,5 +112,6 @@ module.exports = merge(common, {
NODE_ENV: JSON.stringify('development'),
},
}),
new IgnoreNotFoundExportPlugin(),
],
});