-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPF2E-Automated-GM.code-workspace
More file actions
50 lines (50 loc) · 1.13 KB
/
PF2E-Automated-GM.code-workspace
File metadata and controls
50 lines (50 loc) · 1.13 KB
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
46
47
48
49
50
{
"folders": [
{
"path": "."
}
],
"settings": { },
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "tsc build",
"type": "shell",
"command": "npx tsc",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$tsc"],
"detail": "Transpile TypeScript to JavaScript"
},
{
"label": "tsc watch",
"type": "shell",
"command": "npx tsc --watch",
"isBackground": true,
"problemMatcher": ["$tsc-watch"],
"detail": "Watch TypeScript files and transpile on save"
},
{
"label": "Bundle",
"type": "shell",
"command": "npx rollup -c",
"isBackground": true,
"problemMatcher": [],
"detail": "Bundle all TS files into a single JS file"
},
{
"label": "Copy JS Files",
"type": "shell",
"command": "node",
"args": [
"${workspaceFolder}/tasks/copy-files.mjs"
],
"problemMatcher": [],
"detail": "Copy all JS files to the hardcoded destination"
}
]
}
}