打开VSCode,打开一个普通空目录(作为VSCode空工程),按F5,选chrome方式,更换自动生成的launch.json内容如下:
//调式egret引擎
{
// 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
"version": "0.2.0",
"configurations": [
{
"type": "node", //这个时本地安装的node
"request": "launch",
"name": "启动程序",
"args": [
"--max-old-space-size=2000",
"build",
"-sourcemap"
],
"program": "C:\\Program Files (x86)\\Egret\\EgretLauncher\\resources\\app\\engine\\win\\selector.js", //egret引擎入口,可以放断点
"cwd": "本地egret项目目录,注意双引号"
},
]
}
引擎是typescript编写的,但是只有编译过的js代码
本文介绍如何在VSCode中设置launch.json以调试Egret引擎,通过修改配置文件,使用Chrome方式进行调试,详细展示了如何指定node类型、请求方式、参数及程序路径。
1370

被折叠的 条评论
为什么被折叠?



