build(language-service): support deep import bundling of language services (#14689)

This commit is contained in:
Jason Aden
2017-02-23 22:53:17 -08:00
committed by Igor Minar
parent 41da5998cd
commit 2da3844673
7 changed files with 122 additions and 26 deletions

View File

@ -0,0 +1,13 @@
{
"extends": "./tsconfig-build",
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node",
"outDir": "../../../dist/esm/core"
},
"files": [
"index.ts",
"../../../node_modules/zone.js/dist/zone.js.d.ts",
"../../system.d.ts"
]
}