-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeyva.code-workspace
77 lines (77 loc) · 1.39 KB
/
Keyva.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
{
"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
},
"task.allowAutomaticTasks": "on",
},
"launch": {
"configurations": [
{
"name": "Debug Active Cover Function (Electron)",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/../Moduless/build/moduless.js",
"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": "node",
"args": [
"${workspaceFolder}/node_modules/moduless/build/moduless.js",
"set",
"${file}:${lineNumber}"
],
"problemMatcher": []
}
]
}
}