Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tasks.json « .vscode « default « admin « wwwroot « hamcore « bin « src - github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 704f13551adafc1698ad863f1949e6745c9406d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "webpack build",
            "type": "npm",
            "script": "build",
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        },
        {
            "label": "webpack watch",
            "type": "npm",
            "script": "watch",
            "isBackground": true,
            "problemMatcher": {
                "pattern": {
                    "regexp": "^$"
                },
                "background": {
                    "activeOnStart": true,
                    "beginsPattern": ".*Version: webpack.*",
                    "endsPattern": ".*\\[built\\]"
                },
            }
        },
        {
            "label": "tsc build",
            "type": "typescript",
            "tsconfig": "tsconfig.json",
        },
        {
            "label": "tsc watch",
            "type": "typescript",
            "tsconfig": "tsconfig.json",
            "option": "watch",
            "problemMatcher": [
                "$tsc-watch"
            ]
        }
    ]
}