Don't use gulp anymore

This commit is contained in:
Alex Dima 2018-03-09 12:45:16 +01:00
parent 09e0f8b047
commit e5d3880ac4
9 changed files with 148 additions and 11543 deletions

View file

@ -329,7 +329,11 @@ export class QuickInfoAdapter extends Adapter implements monaco.languages.HoverP
let contents = ts.displayPartsToString(info.displayParts);
return {
range: this._textSpanToRange(resource, info.textSpan),
contents: [ contents, documentation + (tags ? '\n\n' + tags : '') ]
contents: [{
value: contents
}, {
value: documentation + (tags ? '\n\n' + tags : '')
}]
};
}));
}