-
Notifications
You must be signed in to change notification settings - Fork 2
/
ifc-developer-tools.code-workspace
83 lines (83 loc) · 1.86 KB
/
ifc-developer-tools.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
{
"folders": [
{
"name": "root",
"path": "./"
},
{
"path": "packages/ifc-syntax-ast-parser"
},
{
"path": "packages/ifc-syntax-codegen"
},
{
"path": "packages/ifc-syntax-docgen"
},
{
"path": "packages/ifc-syntax-vscode"
},
{
"path": "packages/ifc-syntax-server"
},
{
"path": "packages/ifc-syntax-parser"
},
{
"path": "packages/ifc-syntax-express-parser"
}
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "lerna-watch",
"type": "npm",
"script": "lerna-watch",
"isBackground": true,
"problemMatcher": [],
"detail": "lerna watch --verbose -- lerna run build --scope=\\$LERNA_PACKAGE_NAME ",
"group": {
"kind": "build",
"isDefault": true
}
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}/packages/ifc-syntax-vscode/"],
"outFiles": ["${workspaceRoot}/packages/ifc-syntax-vscode/dist/**/*.js"],
"sourceMaps": true
},
{
"type": "node",
"request": "attach",
"name": "Attach to Server",
"port": 6009,
"restart": true,
"timeout": 20000,
"outFiles": ["${workspaceRoot}/packages/**/dist/**/*.js"],
"sourceMaps": true
}
],
"compounds": [
{
"name": "Client + Server",
"configurations": ["Launch Client", "Attach to Server"]
}
]
},
"settings": {
"files.exclude": {
"**/node_modules": false
},
"testing.openTesting": "neverOpen",
"typescript.tsdk": "node_modules/typescript/lib"
}
}