feat: Mission Control dashboard for project management

This commit is contained in:
root
2026-02-16 11:22:06 +00:00
parent 11252e6520
commit 067be4d5a2
11 changed files with 552 additions and 21 deletions
+11 -4
View File
@@ -8,7 +8,7 @@
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
@@ -22,15 +22,22 @@
{
"name": "next"
}
]
],
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
"next-env.d.ts",
".next/types/**/*.ts"
".next/types/**/*.ts",
"types/**/*.d.ts"
],
"exclude": [
"node_modules"
"node_modules",
"src",
"vite.config.ts"
]
}