24.02.04 16:05 작성
·
273
0
안녕하세요 디버그가 잘 안되어서 문의 드립니다.
{
// IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
// 기존 특성에 대한 설명을 보려면 가리킵니다.
// 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug NestJS",
"runtimeExecutable": "yarn",
"runtimeArgs": [
"start:debug"
],
"console": "integratedTerminal",
"restart": true,
"port": 9229,
"autoAttachChildProcesses": true
}
]
}
위와 같이 설정을 하고, 실행을 하였는데, 아래 메세지가 뜨면서 실패합니다.
source /Users/ik/workspace/full-gpt/venv/bin/activate
➜ workspace source /Users/ik/workspace/full-gpt/venv/bin/activate
(venv) ➜ workspace /usr/bin/env 'NODE_OPTIONS= --require "/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/ms-vscode.js-debug/src/bootloader.js" --inspect-publish-uid=http' 'VSCODE_INSPECTOR_OPTIONS=:::{"inspectorIpc":"/var/folders/tz/c_vc4l0n1y5fhzwqv7rphrxm0000gn/T/node-cdp.28589-f5f66828-7.sock","deferredMode":false,"waitForDebugger":"","execPath":"/Users/ik/.nvm/versions/node/v20.10.0/bin/node","onlyEntrypoint":false,"autoAttachMode":"always","fileCallback":"/var/folders/tz/c_vc4l0n1y5fhzwqv7rphrxm0000gn/T/node-debug-callback-8c26c617c10dd13b"}' /Users/ik/.nvm/versions/node/v20.10.0/bin/yarn start:debug
Debugger attached.
yarn run v1.22.21
error Couldn't find a package.json file in "/Users/ik/workspace"
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Waiting for the debugger to disconnect...
(venv) ➜ workspace
왜 그런지 알 수 있을까요?