fenghuo/apps/web/tsconfig.json

31 lines
470 B
JSON
Raw Normal View History

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-06-05 15:44:06 +08:00
"@/*": [
"./*"
],
"@repo/backend/*": [
"../backend/src/*"
]
2025-02-18 15:35:03 +08:00
},
2025-06-05 15:44:06 +08:00
"jsx": "preserve",
2025-02-18 15:35:03 +08:00
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"next.config.mjs",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
2025-06-05 15:44:06 +08:00
"exclude": [
"node_modules"
]
2025-02-18 15:35:03 +08:00
}