You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question about this library: is it possible to use this library in order to parse & generate typescript code. Currently we're building an editor and we're using a lot of regular expressions in order to change typescript code. But we're looking for a better approach.
Thanks a lot, Frank
At first thanks for your sample, it is very helpfull.
https://github.com/angelozerr/tslint-language-service is a plugin for tslint. We have done like your sample to import tsserverlibrary:
import * as ts_module from "../node_modules/typescript/lib/tsserverlibrary";
But I tell me why you have not done like this:
import * as ts_module from "typescript/lib/tsserverlibrary";
With this declaration typescript can be hosted in several
node_modules
folder. no?The text was updated successfully, but these errors were encountered: