This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
mebe-2/.vscode/tasks.json
Mikko Ahlroth 0f4d46ba8f Rewrite frontend with TypeScript/CSS and no NPM
* Changed fonts to builtin fonts
* Changed Disqus to load on-demand
* Changed syntax highlighting to load on-demand
2020-04-18 01:00:01 +03:00

23 lines
473 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build frontend",
"type": "shell",
"command": "./build.sh",
"presentation": {
"reveal": "always"
},
"options": {
"cwd": "./lib/web/frontend",
"env": {}
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}