Files
nextplacement/apps/student/tsconfig.json
2025-07-02 12:05:38 +05:30

35 lines
584 B
JSON

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