Uecko_ERP/apps/server/tsconfig.json
2025-02-01 22:48:13 +01:00

21 lines
487 B
JSON

{
"extends": "../../tsconfig.base.json",
"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"],
"exclude": ["node_modules", "dist"]
}