JSPM

  • Created
  • Published
  • Downloads 42
  • Score
    100M100P100Q59980F
  • License MIT

A host-implementation of Typescripts LanguageService.

Package Exports

  • @wessberg/typescript-language-service

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@wessberg/typescript-language-service) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

TypescriptLanguageServiceHost

NPM version License-mit

A host-implementation of Typescripts LanguageService.

Installation

Simply do: npm install @wessberg/typescript-language-service.

What is it

This is an implementation of Typescript's LanguageService. It can resolve .ts and .js files and builds up an AST from both kinds of files. It can recursively add all imports of a module to the AST if required. Otherwise it can be used to parse and generate Statements, Expressions and (Typescript) Nodes from source code.

Additionally, if a file is added (either directly or automatically) that has a definition file (.d.ts) with the same name in the same directory, it will merge the two before adding the file to the LanguageService.

Usage

const languageService = new TypescriptLanguageServiceHost();
languageService.addFile({
    path: "foo.ts",
    content: `
        import {bar} from "./bar";
        export const foo = bar + 2;
    `,
    addImportedFiles: true
});