Webpack error when debugging extension (Node.js 18) #59
Answered
by
worksofliam
worksofliam
asked this question in
Extension Development QnA
-
Just got a new laptop and got the latest version of Node.js through nvm. Webpack is building my extension through the terminal file, but not through vscode debug. From a shell
From debug task
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "npm: webpack",
"sourceMaps": true
}
]
} |
Beta Was this translation helpful? Give feedback.
Answered by
worksofliam
Jul 8, 2022
Replies: 1 comment 1 reply
-
Downgrading to Node.js 16 worked. I don't count this as resolved.
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
isidorn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Downgrading to Node.js 16 worked. I don't count this as resolved.