Uecko_ERP/apps/server/tsconfig.json
2025-01-29 20:02:59 +01:00

19 lines
402 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"baseUrl": "src",
"paths": {
"@shared/*": ["shared/*"],
"@common/*": ["common/*"]
}
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}