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?
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_modulesfolder. no?