Created
November 8, 2017 17:25
-
-
Save hamaluik/89a620b4adda01452cba0314e4c02c98 to your computer and use it in GitHub Desktop.
Kha debugging in Visual Studio Code with Chrome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Kha/HTML5", | |
"type": "chrome", | |
"request": "launch", | |
"preLaunchTask": "khamake html5", | |
"file": "${workspaceRoot}/build/html5/index.html" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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