Files
myeasycms-v2/apps/web/tsconfig.json
Giancarlo Buomprisco 4bc8448a1d Unify workspace dropdowns; Update layouts (#458)
Unified Account and Workspace drop-downs; Layout updates, now header lives within the PageBody component; Sidebars now use floating variant
2026-03-11 14:45:42 +08:00

30 lines
602 B
JSON

{
"extends": "@kit/tsconfig/base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./app/[locale]/*", "./app/*"],
"~/config/*": ["./config/*"],
"~/components/*": ["./components/*"],
"~/lib/*": ["./lib/*"]
},
"plugins": [
{
"name": "next"
}
],
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"*.ts",
"*.tsx",
"./config/**/*.ts",
"components/**/*",
"lib/**/*.ts",
"app"
],
"exclude": ["node_modules", ".next"]
}