co-mono/tsconfig.base.json
Mario Zechner 8430b91e59 fix(build): Improve source maps for better debugging
- Add inlineSources: true to embed TypeScript source in source maps
- Keeps source maps in separate files (inlineSourceMap: false)
- Enables proper debugging and breakpoints when using packages from npm
2025-08-31 23:49:09 +02:00

19 lines
412 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": ["ES2022"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"inlineSources": true,
"inlineSourceMap": false,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"types": ["node"]
}
}