- added PATTERNS and TRACKS for music - audio and configuration windows fixed - there might be some rudimentary music in there
30 lines
776 B
JSON
30 lines
776 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Run TIC80",
|
|
"type": "shell",
|
|
"command": "tic80 --fs=. impostor.lua"
|
|
},
|
|
{
|
|
"label": "Build & Run TIC80",
|
|
"type": "shell",
|
|
"command": "make build && tic80 --fs=. impostor.lua",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Export assets",
|
|
"type": "shell",
|
|
"command": "make export_assets",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Make build",
|
|
"type": "shell",
|
|
"command": "make build"
|
|
}
|
|
]
|
|
}
|