Uecko_ERP/apps/server/tsconfig.json

21 lines
487 B
JSON
Raw Normal View History

2025-01-28 14:01:02 +00:00
{
2025-01-29 19:02:59 +00:00
"extends": "../../tsconfig.base.json",
2025-01-28 14:01:02 +00:00
"compilerOptions": {
2025-01-29 19:02:59 +00:00
"resolveJsonModule": true,
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"baseUrl": "src",
"paths": {
2025-01-30 10:45:31 +00:00
"@shared/*": ["../../packages/shared/*"],
"@common/*": ["common/*"],
2025-02-01 21:48:13 +00:00
"@contexts/*": ["contexts/*"],
2025-01-30 10:45:31 +00:00
"@config/*": ["config/*"]
2025-01-29 19:02:59 +00:00
}
2025-01-28 14:01:02 +00:00
},
2025-01-29 19:02:59 +00:00
2025-01-28 14:01:02 +00:00
"include": ["src"],
"exclude": ["node_modules", "dist"]
}