-
Notifications
You must be signed in to change notification settings - Fork 2
/
workspace.code-workspace
59 lines (58 loc) · 1.35 KB
/
workspace.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
{
"folders": [
{
"name": "docs",
"path": "."
},
{
"name": "wikiGDrive",
"path": "../wikiGDrive"
}
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "vars",
"type": "shell",
"command": "echo WK:${workspaceFolder} doc: ${workspaceFolder:docs} wiki:${workspaceFolder:wikiGDrive}",
"problemMatcher": []
},
{
"label": "webpack dev",
"isBackground": true,
"type": "shell",
"options": {"cwd": "${workspaceFolder:wikiGDrive}"},
"command": "npm run dev",
"problemMatcher":"$tsc-watch"
}
]
},
"settings": {
"cSpell.enabled": false
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch Program",
"type": "pwa-node",
"request": "launch",
"cwd": "${workspaceFolder:docs}",
"program": "${workspaceFolder:wikiGDrive}/src/cli.ts",
"sourceMaps": true,
"resolveSourceMapLocations": [
"${workspaceFolder:wikiGDrive}/**",
"!**/node_modules/**"
],
"sourceMapPathOverrides": {
"webpack:///./~/*": "${workspaceFolder:wikiGDrive}/node_modules/*",
"webpack://?:*/*": "${workspaceFolder:wikiGDrive}/*"
},
"args": [ "watch" ]
// "args": [ "pull", "1C29_huh5LN64dXnkc7pHe_kgNH-dLYb5p8drt872IE0" ]
// "args": [ "pull", "https://docs.google.com/document/d/1E0DKcCJjdeSPf_YjJUF7pMO72HzWYbsLw3cEmdGW5g0/edit"]
}
]
}
}