ppanel-web/apps/admin/tsconfig.json

25 lines
451 B
JSON

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