bogus/.fleet/run.json

30 lines
735 B
JSON

{
"configurations": [
{
"type": "command",
"name": "Compile",
"program": "bob"
},
{
"type": "command",
"name": "Run",
"program": "$PROJECT_DIR$/mx",
"workingDir": "$PROJECT_DIR$",
"args": ["test.mx"]
},
{
"type": "command",
"name": "Compile and run",
"program": "fish",
"workingDir": "$PROJECT_DIR$",
"args": ["test.fish"]
},
{
"type": "command",
"name": "Run with --debug",
"program": "$PROJECT_DIR$/mx",
"workingDir": "$PROJECT_DIR$",
"args": ["--debug", "test.mx"]
}
]
}