Closed clemensv closed 1 week ago
For debugging in VSCode it's helpful to enable the "sourceMap" option:
{ "compilerOptions": { "target": "esnext", "module": "NodeNext", "moduleResolution": "nodenext", "allowSyntheticDefaultImports": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, "noImplicitAny": false, "skipLibCheck": true, "sourceMap": true, }, "ts-node": { "esm": true } }
additionally add
**/*.js.map to .gitignore
**/*.js.map
For debugging in VSCode it's helpful to enable the "sourceMap" option:
additionally add
**/*.js.map
to .gitignore