25 lines
496 B
JSON
25 lines
496 B
JSON
{
|
|
"extends": "@workspace/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@workspace/ui/*": ["../../services/ui/src/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"next.config.mjs",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
// ".next/types/**/*.ts"
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", ".next/*", ".turbo/*", ".vscode/*"]
|
|
}
|