Uecko_ERP/apps/server/tsconfig.json

22 lines
537 B
JSON
Raw Normal View History

2025-01-28 14:01:02 +00:00
{
2025-04-22 15:09:57 +00:00
"extends": "@repo/tsconfig/node",
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-02-01 21:48:13 +00:00
"@contexts/*": ["contexts/*"],
2025-04-22 17:14:34 +00:00
"@libs/*": ["../../../libs/*"],
"@packages/*": ["../../../packages/*"]
/*"@common/*": ["common/*"],*/
/*"@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-04-22 15:09:57 +00:00
"include": ["src", "test"],
"exclude": ["node_modules", "coverage"]
2025-01-28 14:01:02 +00:00
}