build: simplify package.jsons for all of our packages (#36944)

We can remove all of the entry point resolution configuration from the package.json
in our source code as ng_package rule adds the properties automatically and correctly
configures them.

This change simplifies our code base but doesn't have any impact on the package.json
in the distributed npm_packages.

PR Close #36944
This commit is contained in:
Igor Minar
2020-05-05 21:56:17 -07:00
committed by Alex Rickabaugh
parent 9dbb30f884
commit d578ab8f3c
34 changed files with 15 additions and 287 deletions

View File

@ -1,11 +1,3 @@
{
"name": "@angular/compiler/testing",
"typings": "./testing.d.ts",
"main": "../bundles/compiler-testing.umd.js",
"module": "../fesm5/testing.js",
"es2015": "../fesm2015/testing.js",
"esm5": "../esm5/testing/testing.js",
"esm2015": "../esm2015/testing/testing.js",
"fesm5": "../fesm5/testing.js",
"fesm2015": "../fesm2015/testing.js"
"name": "@angular/compiler/testing"
}