Some cleanup

This commit is contained in:
Simon Podlipsky
2019-01-05 15:19:54 +01:00
parent 2de57f095c
commit c39dc1fb15
14 changed files with 9 additions and 22 deletions

View File

@ -3,9 +3,6 @@ const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
module.exports = {
target: 'web',
stats: {
children: false
},
entry: {
app: './public/app/index.ts',
},
@ -25,6 +22,7 @@ module.exports = {
],
},
stats: {
children: false,
warningsFilter: /export .* was not found in/
},
node: {

View File

@ -3,7 +3,6 @@
const merge = require('webpack-merge');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const common = require('./webpack.common.js');
const webpack = require('webpack');
const path = require('path');
const ngAnnotatePlugin = require('ng-annotate-webpack-plugin');
const HtmlWebpackPlugin = require("html-webpack-plugin");