Files
nextplacement/apps/student/tsconfig.json
2025-06-30 11:55:48 +05:30

20 lines
498 B
JSON

{
"extends": "@workspace/typescript-config/nextjs.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@workspace/ui/*": ["../../packages/ui/src/*"],
"@workspace/db/*": ["../../packages/db/src/*"],
"@workspace/db": ["../../packages/db/src"]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "next.config.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}