2025-02-18 15:35:03 +08:00
|
|
|
{
|
2025-05-26 19:56:34 +08:00
|
|
|
"extends": "@repo/typescript-config/nextjs.json",
|
2025-02-18 15:35:03 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"],
|
2025-05-26 19:56:34 +08:00
|
|
|
"@repo/backend/*": ["../backend/src/*"],
|
2025-02-18 15:35:03 +08:00
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"next.config.mjs",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
".next/types/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|