casualroom/apps/fenghuo/web/tsconfig.json

41 lines
600 B
JSON
Executable File

{
"extends": "@nice/typescript-config/nextjs.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"./*"
],
"@fenghuo/api/*": [
"../api/src/*"
],
"@fenghuo/common/*": [
"../common/src/*"
],
"@nice/ui/*": [
"../../../shared/ui/src/*"
],
"@fenghuo/db/*": [
"../db/src/*"
],
"@fenghuo/tus/*": [
"../../../shared/tus/src/*"
],
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"next.config.mjs",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}