task.json Lua code example
Example: task.json Lua
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Lua",
"type": "shell",
"command": "lua53",
"args": [
"${file}"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}