GithubHelp home page GithubHelp logo

segevfiner / tsup-problem-matcher Goto Github PK

View Code? Open in Web Editor NEW
3.0 2.0 0.0 250 KB

tsup Problem matcher

Home Page: https://marketplace.visualstudio.com/items?itemName=segevfiner.tsup-problem-matcher

License: MIT License

TypeScript 100.00%
javascript tsup typescript vscode-extension vscode-problem-matcher vscode-tasks vscode

tsup-problem-matcher's Introduction

tsup Problem Matchers for VS Code

Provides problem matchers for use with tsup projects.

Features

Provides the following problem matchers:

  • $tsup — adds errors and warnings reported by tsup
  • $tsup-watch — adds errors and warnings reported by tsup while in watch mode
  • $tsup-tsc — adds TypeScript errors and warnings reported by tsup when --dts is enabled.
  • $tsup-tsc-watch — adds TypeScript errors and warnings reported by tsup when --dts is enabled while in watch mode.

Usage

The following example shows how to add problem matchers to your project:

{
    "version": "2.0.0",
    "tasks": [
        {
            "type": "npm",
            "label": "npm: watch",
            "detail": "tsup --watch",
            "script": "watch",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$tsup-watch",
                "$tsup-tsc-watch"
            ],
            "isBackground": true,
            "presentation": {
                "reveal": "never",
                "group": "watchers"
            },
        },
        {
            "type": "npm",
            "label": "npm: build",
            "detail": "tsup",
            "script": "build",
            "group": "build",
            "problemMatcher": [
                "$tsup",
                "$tsup-tsc"
            ]
        }
    ]
}

tsup-problem-matcher's People

Contributors

segevfiner avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

tsup-problem-matcher's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.