jhm-ciberman/docs_gm

View on GitHub
.vscode/tasks.json

Summary

Maintainability
Test Coverage
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "lint",
            "type": "npm",
            "script": "lint",
            "problemMatcher": {
                "base": "$tslint5",
                "fileLocation": "absolute"
            }
        },
        {
            "label": "clean",
            "type": "npm",
            "script": "clean",
            "problemMatcher": []
        },
        {
            "label": "coverage",
            "type": "npm",
            "script": "coverage",
            "problemMatcher": []
        },
        {
            "label": "test",
            "type": "npm",
            "script": "test",
            "problemMatcher": []
        },
        {
            "type": "npm",
            "script": "test-only",
            "problemMatcher": []
        },
        {
            "type": "npm",
            "script": "watch",
            "problemMatcher": [
                "$tsc-watch"
            ],
            "isBackground": true
        },
        {
            "type": "npm",
            "script": "integration",
            "problemMatcher": []
        },
        {
            "type": "npm",
            "script": "build",
            "problemMatcher": []
        }
    ]
}