{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 // Rename to `launch.json` to use this file as your launch configuration to run QuickApp code. "version": "0.2.0", "configurations": [ { "name": "hc3emu2: Current File", // Runs with luarocks installed files "type": "luaMobDebug", "request": "launch", "workingDirectory": "${workspaceFolder}", "sourceBasePath": "${workspaceFolder}", "listenPort": 8172, "stopOnEntry": false, "sourceEncoding": "UTF-8", "interpreter": "lua", "arguments": [ "-e", "require('hc3emu2')", "run", "${relativeFile}" ], "listenPublicly": true } ] }