Updated tasks.json to set the working directory and fixed '[dev]' ( escape character issue )

This commit is contained in:
2026-03-20 00:03:58 -07:00
parent d40d0cceea
commit 0d89c5c074
+4 -1
View File
@@ -1,5 +1,8 @@
{ {
"version": "2.0.0", "version": "2.0.0",
"options": {
"cwd": "${workspaceFolder}"
},
"tasks": [ "tasks": [
{ {
@@ -25,7 +28,7 @@
"pip", "pip",
"install", "install",
"-e", "-e",
".[dev]" ".'[dev]'"
], ],
"problemMatcher": [], "problemMatcher": [],
"dependsOn": "venv: create" "dependsOn": "venv: create"