Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Patch TS Language ServiceNew to Visual Studio Code? Get it now.
Patch TS Language Service

Patch TS Language Service

Christopher Carrick

|
23 installs
| (0) | Free
Extension to allow easy patching of the TypeScript language service
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Patch TS Language Service

VSCode extension that allows users to plug-in and patch the internals of VSCode's TS language service.

Extension Settings

{
  "crcarrick.patchTsLanguageService.scriptPath": "/path/to/script.js"
}

Usage (JS)

Create a javascript file somewhere on your local machine, and export an object whose properties mirror the API of typescripts LanguageService.

// /path/to/script.js
module.exports = {
  getSyntacticDiagnostics({ logger }, original, ...args) {
    // provided logger to easily write to tsserver.log
    logger.log('info', 'Hello from getSyntacticDiagnostics')

    const result = original(..args)
    // do something with result...
    return result
  },
}

Usage (TS)

You can install the patch-ts-language-service-types package and get typescript intellisense support when writing your patched LanguageService API.

npm add -D patch-ts-language-service-types
pnpm add -D patch-ts-language-service-types
yarn add -D patch-ts-language-service-types
import type { PatchedLanguageService } from 'patch-ts-language-service-types'

const patchedService: PatchedLanguageService = {
  // `utils`, `original`, and `args` are strongly typed
  getSyntacticDiagnostics(utils, original, ...args) {
    const result = original(...args)
    // do something with result...
    return result
  },
}

// export default will work as well
export = patchedService

IMPORTANT The typescript patch file must be compile to javascript before providing the path to the file in the extension settings. Providing a path directly to a typescript file will not work.

For a working example, see here.

Release Notes

0.0.1

Initial release of Patch TS Language Service

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft