123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Build",
- "type": "haxe-eval",
- "request": "launch"
- },
- {
- "name": "Debug",
- "type": "hxcpp",
- "request": "launch",
- "cwd": "${workspaceRoot}",
- "program": "${workspaceFolder}/bin/Main-debug.exe"
- },
- {
- "name": "Build & Debug",
- "type": "hxcpp",
- "request": "launch",
- "cwd": "${workspaceFolder}",
- "program": "${workspaceFolder}/bin/Main-debug.exe",
- "preLaunchTask": {
- "type": "haxe",
- "args": "active configuration"
- }
- },
- {
- "name": "HL OtterUI cli",
- "request": "launch",
- "type": "hl",
- "cwd": "${workspaceRoot}",
- "preLaunchTask": {
- "type": "haxe",
- "args": "active configuration"
- }
- }
- ]
- }
|