init: arcadia-admin — admin webapp for arcadia-core, cloned from vibespace
Initial commit. Spun up via the docs/STARTER.md recipe: cp from vibespace, reset git, rename package, set brand to "Arcadia Admin" with Shield icon in app/lib/identity.ts. Inherits the full Crema sibling-lib wiring including @crema/arcadia-client (typed HTTP + Phoenix Channels realtime against arcadia-core) and @crema/arcadia-auth-ui (login/signup/password-reset/2FA forms). The /login route already renders <LoginForm>; <ArcadiaProvider> in app/root.tsx reads VITE_ARCADIA_URL (default localhost:4000) and VITE_ARCADIA_TENANT (default "default"). CLAUDE.md and README rewritten to frame this as the admin app for arcadia-core. docs/STARTER.md removed — arcadia-admin is a leaf consumer, not a downstream starter. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
53
tsconfig.json
Normal file
53
tsconfig.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"include": [
|
||||
"**/*",
|
||||
"**/.server/**/*",
|
||||
"**/.client/**/*",
|
||||
".react-router/types/**/*"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
||||
"types": ["node", "vite/client"],
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"moduleResolution": "bundler",
|
||||
"jsx": "react-jsx",
|
||||
"rootDirs": [".", "./.react-router/types"],
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": ["./app/*"],
|
||||
"@crema/notification-ui": ["../lib-notification-ui/src/index.tsx"],
|
||||
"@crema/notification-ui/*": ["../lib-notification-ui/src/*"],
|
||||
"@crema/chat-ui": ["../lib-chat-ui/src/index.tsx"],
|
||||
"@crema/chat-ui/*": ["../lib-chat-ui/src/*"],
|
||||
"@crema/aifirst-ui": ["../lib-aifirst-ui/src/index.tsx"],
|
||||
"@crema/aifirst-ui/*": ["../lib-aifirst-ui/src/*"],
|
||||
"@crema/llm-ui": ["../lib-llm-ui/src/index.tsx"],
|
||||
"@crema/llm-ui/*": ["../lib-llm-ui/src/*"],
|
||||
"@crema/action-bus": ["../lib-action-bus/src/index.tsx"],
|
||||
"@crema/action-bus/*": ["../lib-action-bus/src/*"],
|
||||
"@crema/arcadia-client": ["../lib-arcadia-client/src/index.tsx"],
|
||||
"@crema/arcadia-client/*": ["../lib-arcadia-client/src/*"],
|
||||
"@crema/arcadia-auth-ui": ["../lib-arcadia-auth-ui/src/index.tsx"],
|
||||
"@crema/arcadia-auth-ui/*": ["../lib-arcadia-auth-ui/src/*"],
|
||||
"// CREMA:PATHS": [""],
|
||||
"react": ["./node_modules/@types/react"],
|
||||
"react/*": ["./node_modules/@types/react/*"],
|
||||
"react-dom": ["./node_modules/@types/react-dom"],
|
||||
"react-dom/*": ["./node_modules/@types/react-dom/*"],
|
||||
"clsx": ["./node_modules/clsx"],
|
||||
"tailwind-merge": ["./node_modules/tailwind-merge"],
|
||||
"lucide-react": ["./node_modules/lucide-react"],
|
||||
"openapi-fetch": ["./node_modules/openapi-fetch"],
|
||||
"openapi-fetch/*": ["./node_modules/openapi-fetch/*"],
|
||||
"phoenix": ["./node_modules/@types/phoenix"],
|
||||
"phoenix/*": ["./node_modules/@types/phoenix/*"]
|
||||
},
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
"noEmit": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user