-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHat.code-workspace
108 lines (108 loc) · 2.16 KB
/
Hat.code-workspace
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"folders": [
{
"path": ".",
},
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/package-lock.json": true,
"*.tsbuildinfo": true,
"*.d.ts.map": true,
},
"search.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/build": true,
"**/node_modules": true,
"**/package-lock.json": true,
"**/lib/*.js": true,
"index.*": true
},
"task.allowAutomaticTasks": "on",
},
"launch": {
"configurations": [
{
"name": "Debug Active Cover Function",
"type": "chrome",
"request": "launch",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
"cwd": "${workspaceRoot}",
"runtimeArgs": [
"${workspaceRoot}/node_modules/moduless/build/moduless.js",
"--remote-debugging-port=9222"
],
"sourceMaps": true,
"timeout": 2000
},
{
"name": "Debug All Cover Functions",
"type": "chrome",
"request": "launch",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
"cwd": "${workspaceRoot}",
"runtimeArgs": [
"${workspaceRoot}/node_modules/moduless/build/moduless.js",
"--remote-debugging-port=9222",
"expression=(cover)"
],
"sourceMaps": true,
"timeout": 2000
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Compile Library",
"type": "shell",
"command": "tsc",
"args": [
"--build",
"--watch"
],
"options": {
"cwd": "${workspaceRoot}"
},
"problemMatcher": [
"$tsc"
],
"runOptions": {
"runOn": "folderOpen"
},
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": true
},
{
"label": "Set Active Cover Function",
"type": "shell",
"command": "npx",
"args": [
"moduless",
"set",
"${file}:${lineNumber}"
],
"problemMatcher": []
},
{
"label": "Run All Cover Functions",
"type": "shell",
"command": "${workspaceRoot}/node_modules/.bin/electron",
"args": [
"${workspaceRoot}/node_modules/moduless/build/moduless.js",
"moduless",
"all"
],
"problemMatcher": []
}
]
}
}