-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbeat.code-workspace
More file actions
103 lines (103 loc) · 1.98 KB
/
beat.code-workspace
File metadata and controls
103 lines (103 loc) · 1.98 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
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
{
"settings": {
"files.exclude": {
".vscode": true,
".gitignore": true,
".vscodeignore": true,
".nvmrc": true,
"*.code-workspace": true,
"package.json": false,
"**/tsconfig.json": false,
"**/node_modules": true,
"**/package-lock.json": true,
"build": false,
"code_client": true,
"language_server": true,
"source": true,
},
"search.exclude": {
".vscode": false,
".gitignore": false,
".vscodeignore": false,
".nvmrc": false,
"*.code-workspace": false,
"package.json": false,
"**/tsconfig.json": false,
"**/node_modules": true,
"**/package-lock.json": true,
"build": true,
"code_client": false,
"language_server": false,
"source": false,
},
"typescript.tsdk": "Beat/node_modules/typescript/lib",
"typescript.tsc.autoDetect": "off",
"npm.enableScriptExplorer": false
},
"folders": [
{
"name": "Beat",
"path": "."
},
{
"name": "Code client",
"path": "code_client"
},
{
"name": "Language server",
"path": "language_server"
},
{
"name": "Source",
"path": "source"
}
],
"launch": {
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Run tests",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"test"
],
"port": 9229
},
{
"type": "node",
"request": "launch",
"name": "Generate documentation",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"document"
],
"port": 9229
},
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Extension",
"args": [
"--extensionDevelopmentPath=${workspaceFolder:Code client}"
],
"runtimeExecutable": "${execPath}",
"outFiles": [
"${workspaceFolder:Code client}/dist/**/*.js"
]
},
{
"type": "node",
"request": "attach",
"name": "Attach language server",
"port": 6009,
"restart": true,
"outFiles": [
"${workspaceFolder:Language server}/dist/**/*.js"
]
}
]
}
}