Files
DentalManagementMHAprilgg/apps/Frontend/tsconfig.json
2026-04-04 22:13:55 -04:00

19 lines
433 B
JSON
Executable File

{
"extends": "@repo/typescript-config/base.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "ESNext",
"jsx": "preserve",
"baseUrl": ".", // This tells TypeScript where to start resolving paths
"paths": {
"@/*": ["src/*"] // The @ alias will point to src folder inside the Frontend app
}
},
"include": [
"**/*.ts",
"**/*.tsx",
],
"exclude": ["node_modules"]
}