cocos creator3.0.0 vscode配置

settings.json

{
    "debug.javascript.unmapMissingSources": true,
    "search.exclude": {       
        "**/node_modules": true,
        "**/bower_components": true,
        "build/": true,
        "temp/": true,
        "library/": true,
        "**/*.anim": true
    },
    "files.exclude": {
        "**/node_modules": true,
        "**/.git": true,
        "**/.DS_Store": true,
        "**/*.meta": true,
        "library/": true,
        "local/": true,
        "temp/": true   
    }
}

launch.json

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch Chrome",
            "request": "launch",
            "type": "pwa-chrome",
            "url": "http://localhost:7456",
            "webRoot": "${workspaceFolder}"
        }
    ]
}
原文地址:https://www.cnblogs.com/dmc-nero/p/15180202.html