I created a .vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal"
}
]
}
but when I click run and debug button, it always appear a window at top ask me to select a configuration to run, and it added 2 more configurations I didn’t added, Nodejs and Python debugger
all I want is when I click run and debug button it auto run with my launch.json, not ask me to select everytime