This commit is contained in:
alexander
2026-01-18 23:36:55 +01:00
parent b16009f62a
commit 3eac461f7a
16 changed files with 506 additions and 7 deletions

40
.vscode/tasks.json vendored
View File

@@ -1,17 +1,45 @@
{
"tasks": [
{
"label": "Compile All",
"label": "Run build Script",
"type": "shell",
"command": "TYPST_SOURCE_DIR=src BUILD_DIR=output ./compile-all.bash",
"command": "${workspaceFolder}/.venv/bin/python",
"args": ["src/build.py"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Watch Styles",
"type": "shell",
"command": "sass",
"args": ["--watch", "styles:static/css"],
"isBackground": true,
"problemMatcher": {
"pattern": {
"regexp": "^.*$",
"file": 1,
"location": 2,
"message": 3
},
"background": {
"activeOnStart": true,
"beginsPattern": "^.*Watching.*$",
"endsPattern": "^.*Watching.*$"
}
}
},
{
"label": "Run debug server",
"type": "shell",
"command": "${workspaceFolder}/.venv/bin/python",
"args": ["src/debug_server.py"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}"
}
}
]
}