when tsconfig.json is
"sourceMap": true,
"inlineSourceMap": true
vscode debugger breakpoints works fine, but the errors stack traces are not correct becuase source maps are inline and have not been registered.
then when I change tsconfig.json to
"sourceMap": true,
"inlineSourceMap": false
Now errors stack traces back to working. but vscode debugger breakpoints has problem with it.
I migrate back to ts-node --swc because of this
How should I fix it?
when tsconfig.json is
vscode debugger breakpoints works fine, but the errors stack traces are not correct becuase source maps are inline and have not been registered.
then when I change tsconfig.json to
Now errors stack traces back to working. but vscode debugger breakpoints has problem with it.
I migrate back to
ts-node --swcbecause of thisHow should I fix it?