Files
garden/.vscode/tasks.json
Bokuan Li 5923b45f9d
All checks were successful
Compile Project / Compile (push) Successful in 29s
Added Urysohn Metrisation theorem and compactness theorems.
2026-05-26 19:32:02 -04:00

57 lines
1.2 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "npx spec compile",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Serve",
"type": "shell",
"command": "npx spec serve",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Watch",
"type": "shell",
"command": "npx spec watch",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Conservative",
"type": "shell",
"command": "npx spec watch --conservative",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
}
]
}