feat: mark angular packages as side-effect free (#22785)

This flag is picked up by webpack v4 and used for more agressive optimizations.

Our code is already side-effect free, because that's what we needed for build-optimizer to work.

PR Close #22785
This commit is contained in:
Igor Minar
2018-03-14 18:30:18 -07:00
committed by Miško Hevery
parent 0ebd577db4
commit 44de10e2db
20 changed files with 40 additions and 20 deletions

View File

@ -3,5 +3,6 @@
"typings": "./http.d.ts",
"main": "../bundles/common-http.umd.js",
"module": "../esm5/http.js",
"es2015": "../esm2015/http.js"
"es2015": "../esm2015/http.js",
"sideEffects": false
}