Weeeeee/.vscode/launch.json

16 lines
323 B
JSON
Raw Normal View History

2022-03-02 18:36:52 +01:00
{
"configurations": [
//run love in current dir
{
"name": "love",
"type": "f5anything",
"request": "launch",
"command": "love --console .",
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"env": {
"PATH": "${env:PATH}"
}
}
]
}