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-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-04-22 15:09:57 +00:00
|
|
|
"include": ["src", "test"],
|
|
|
|
|
"exclude": ["node_modules", "coverage"]
|
2025-01-28 14:01:02 +00:00
|
|
|
}
|