I want to debug a typescript feathersjs project using VSCode but when I launch the program a get the error
"Cannot launch program '[project_path]/src/index.ts' because corresponding JavaScript cannot be found. "
My launch.json look like this:
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/index.ts",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": [
"${workspaceFolder}/lib/**/*.js"
]
}
]
}