Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Rollup Problem MatcherNew to Visual Studio Code? Get it now.
Rollup Problem Matcher

Rollup Problem Matcher

paulober

|
692 installs
| (1) | Free
A problem matcher for the Rollup CLI. Currently only supports Typescript and the -watch option.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Rollup Problem Matcher

A problem matcher for the Rollup CLI. Currently only supports Typescript and the -watch option.

Requirements

For rollup typescript watch to work you need to use the @rollup/plugin-typescript plugin.

Usage

You can use this problem matcher in your rollup -w tasks like so:

{
  "version": "2.0.0",
  "tasks": [
    {
      "type": "npm",
      "script": "watch",
      "isBackground": true,
      "problemMatcher": "$rollup-ts-watch",
      "presentation": {
        "reveal": "never"
      },
      "group": {
        "kind": "build",
        "isDefault": true
      }
    }
  ]
}

or

{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "rollup",
      "type": "shell",
      "command": "rollup -c -w",
      "problemMatcher": ["$rollup-ts-watch"]
    }
  ]
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft