Whenever I initiate the debugging process for my mocha tests with the provided configuration, Visual Studio Code ends up navigating through the transpiled code rather than the original TypeScript code. Is there a specific setting that needs to be adjusted in order to step through the original code instead?
{
"version": "0.2.0",
"configurations": [
{
"args": [
"--require",
"ts-node/register",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/tests/**/*.ts"
],
"internalConsoleOptions": "openOnSessionStart",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"request": "launch",
"sourceMaps": true,
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
]
}