Skip to content

Instantly share code, notes, and snippets.

@hamaluik
Created November 8, 2017 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamaluik/89a620b4adda01452cba0314e4c02c98 to your computer and use it in GitHub Desktop.
Save hamaluik/89a620b4adda01452cba0314e4c02c98 to your computer and use it in GitHub Desktop.
Kha debugging in Visual Studio Code with Chrome
{
"version": "0.2.0",
"configurations": [
{
"name": "Kha/HTML5",
"type": "chrome",
"request": "launch",
"preLaunchTask": "khamake html5",
"file": "${workspaceRoot}/build/html5/index.html"
}
]
}
{
"version": "2.0.0",
"tasks": [
{
"taskName": "khamake html5",
"command": "node",
"args": ["kha/make", "html5"],
"problemMatcher": "$haxe"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment