mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
`ls_rollup_bundle` is no longer needed since we could invoke `ng_rollup_bundle` directly. Background: language service runs rollup to produce a single file to reduce startup time in the editor. However, due to the need to load dynamic versions of typescript at runtime (think the case where users can change typescript version in their editor), we hack the "banner" to export a CommonJS default function, so that we could dynamically load the typescript module provided at runtime via AMD and use it throughout the implementation. PR Close #38086
20 lines
530 B
JSON
20 lines
530 B
JSON
{
|
|
"name": "@angular/language-service",
|
|
"version": "0.0.0-PLACEHOLDER",
|
|
"description": "Angular - language services",
|
|
"main": "./bundles/language-service.js",
|
|
"typings": "./index.d.ts",
|
|
"author": "angular",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/angular/angular.git",
|
|
"directory": "packages/language-service"
|
|
},
|
|
"ng-update": {
|
|
"packageGroup": "NG_UPDATE_PACKAGE_GROUP"
|
|
},
|
|
"publishConfig":{
|
|
"registry":"https://wombat-dressing-room.appspot.com"
|
|
}
|
|
}
|