-
Notifications
You must be signed in to change notification settings - Fork 408
Expand file tree
/
Copy pathbaml_language.code-workspace
More file actions
82 lines (82 loc) · 1.81 KB
/
baml_language.code-workspace
File metadata and controls
82 lines (82 loc) · 1.81 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
{
"folders": [
{
"path": "baml_language"
},
{
"path": "typescript2"
}
],
"settings": {
"rust-analyzer.cargo.features": "all",
"rust-analyzer.check.features": "all",
"claudeCode.useTerminal": true
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch VS Code extension (v2)",
"type": "extensionHost",
"request": "launch",
"sourceMaps": true,
"cwd": "${workspaceFolder:typescript2}/app-vscode-ext",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder:typescript2}/app-vscode-ext"
],
"outFiles": ["${workspaceFolder:typescript2}/app-vscode-ext/dist/**"],
"env": {
"VSCODE_DEBUG_MODE": "true",
"BAML_CLI_PATH": "${workspaceFolder:baml_language}/target/debug/baml-cli",
"BAML_PLAYGROUND_DEV_PORT": "4000"
}
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "build-cli",
"type": "shell",
"command": "cargo build -p baml_cli",
"options": {
"cwd": "${workspaceFolder:baml_language}"
},
"group": "build",
"problemMatcher": ["$rustc"]
},
{
"label": "build-extension",
"type": "shell",
"command": "pnpm --filter app-vscode-ext build",
"options": {
"cwd": "${workspaceFolder:typescript2}"
},
"group": "build",
"problemMatcher": ["$tsc"]
},
{
"label": "build-webview",
"type": "shell",
"command": "pnpm --filter app-vscode-webview build",
"options": {
"cwd": "${workspaceFolder:typescript2}"
},
"group": "build",
"problemMatcher": ["$tsc"]
},
{
"label": "build-all",
"dependsOn": ["build-cli", "build-extension", "build-webview"],
"dependsOrder": "parallel",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}
}