Ver código fonte

Reduces startup time even more

main
Eric Amodio 7 anos atrás
pai
commit
d8aa838e84
2 arquivos alterados com 2 adições e 1 exclusões
  1. +1
    -1
      tsconfig.json
  2. +1
    -0
      webpack.config.js

+ 1
- 1
tsconfig.json Ver arquivo

@ -3,7 +3,7 @@
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": [ "es2015", "es2016" ],
"module": "commonjs",
"module": "es2015",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,

+ 1
- 0
webpack.config.js Ver arquivo

@ -13,6 +13,7 @@ module.exports = function(env, argv) {
const sourceMaps = !env.production;
const plugins = [
new webpack.optimize.ModuleConcatenationPlugin(),
new UglifyJsPlugin({
parallel: true,
sourceMap: sourceMaps,

Carregando…
Cancelar
Salvar