What do I do to get vs code to step into the actual TS file instead of this? See it has the sourceMappingURL thing at the bottom and some other generated stuff at the top.
{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"declaration": true,
"outDir": "./dist",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"include": [
"src/stasis/**/*"
],
"exclude": [
"node_modules"
]
}
{
"name": "test",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register/transpile-only"
],
"args": [
"evaluate.ts",
"${input:subscription}"
],
"cwd": "${workspaceRoot}/src/stasis",
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
"<node_internals>/**",
"${workspaceFolder}/node_modules/**",
]
}