radare/radare2-webui

View on GitHub
www/m/.vscode/tasks.json

Summary

Maintainability
Test Coverage
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "command": "gulp",
    "isShellCommand": true,
    "args": [],
    "tasks": [
        {
            "taskName": "build",
            "args": [],
            "isBuildCommand": true,
            "isBackground": false,
            "problemMatcher": [
                "$lessCompile",
                "$tsc",
                "$jshint"
            ]
        },
        {
            "taskName": "watch",
            "args": [],
            "isBuildCommand": true,
            "isBackground": true,
            "problemMatcher": [
                "$lessCompile",
                "$tsc",
                "$jshint"
            ]
        },
        {
            "taskName": "test",
            "args": [],
            "isTestCommand": true
        }
    ]
}