Uecko_ERP/apps/server/tsconfig.json
2025-04-22 17:09:57 +02:00

21 lines
494 B
JSON

{
"extends": "@repo/tsconfig/node",
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"baseUrl": "src",
"paths": {
"@shared/*": ["../../packages/shared/*"],
"@common/*": ["common/*"],
"@contexts/*": ["contexts/*"],
"@config/*": ["config/*"]
}
},
"include": ["src", "test"],
"exclude": ["node_modules", "coverage"]
}