Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>TypeScript esbuild problem matchersNew to Visual Studio Code? Get it now.
TypeScript esbuild problem matchers

TypeScript esbuild problem matchers

Nicolas Hedger

|
809 installs
| (0) | Free
Problem matchers for TypeScript projects using esbuild
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

TypeScript esbuild problem matchers

This Visual Studio Code extension provides problem matchers for TypeScript projects built with esbuild.

Problem matchers

The following problem matchers are available and work out of the box.

  • $ts-esbuild (when running esbuild normally)
  • $ts-esbuild-watch (when running esbuild in --watch mode)

Usage

Here's an example of how to use both problem matchers in your tasks.json file.

{
    "version": "2.0.0",
    "tasks": [
        {
            "type": "npm",
            "script": "build",
            "group": "build",
            "problemMatcher": ["$ts-esbuild"]
        },
        {
            "type": "npm",
            "script": "watch",
            "group": "build",
            "isBackground": true,
            "problemMatcher": ["$ts-esbuild-watch"]
        }
    ]
}

Compatibility

The problem matchers have been tested on the latest version of esbuild available at the time, which is: 0.14. If the matchers stop working in a future version, please open an issue or a pull request so it can be kept up to date.

License

This extension is open-sourced software licensed under the MIT license.

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