mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 22:34:36 +00:00
33 lines
753 B
JSON
33 lines
753 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
// Launch in native/CPP
|
|
"name": "Lime",
|
|
"type": "lime",
|
|
"request": "launch"
|
|
},
|
|
{
|
|
// Evaluate macros with debugging enabled
|
|
"name": "Haxe Eval",
|
|
"type": "haxe-eval",
|
|
"request": "launch"
|
|
},
|
|
{
|
|
"name": "HTML5 Debug",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "http://127.0.0.1:3001",
|
|
"sourceMaps": true,
|
|
"webRoot": "${workspaceFolder}",
|
|
"preLaunchTask": "debug: html"
|
|
},
|
|
{
|
|
"name": "Mac (Debug)",
|
|
"type": "hxcpp",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/export/debug/macos/bin/Funkin.app/Contents/MacOS/Funkin",
|
|
"preLaunchTask": "debug: mac"
|
|
]
|
|
}
|