mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
Workspace Setup Complete: - Added dbal/development to root package.json workspaces - Added @metabuilder/dbal dependency to frontends/nextjs (file reference) - Updated TypeScript paths in frontend to resolve via node_modules - Installed workspace dependencies successfully Structure Now In Place: ✅ dbal/development is registered as workspace ✅ @metabuilder/dbal dependency declared in frontend ✅ Path aliases configured for @/dbal resolution ✅ npm install works with all dependencies Pre-existing DBAL Build Issues Found: ⚠️ src/core/foundation/types/types.generated missing ⚠️ CodeGen script (tsx ../shared/tools/codegen/gen_types.ts) failing ⚠️ exactOptionalPropertyTypes causing TypeScript errors in KV operations These are pre-existing issues in DBAL code, not related to workspace setup. Will need separate DBAL build fix task. For now, workspace structure is ready for when DBAL build is fixed. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
79 lines
1.7 KiB
JSON
79 lines
1.7 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowJs": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@/fakemui": [
|
|
"../../fakemui"
|
|
],
|
|
"@/fakemui/*": [
|
|
"../../fakemui/*"
|
|
],
|
|
"@/dbal": [
|
|
"../../node_modules/@metabuilder/dbal"
|
|
],
|
|
"@/dbal/*": [
|
|
"../../node_modules/@metabuilder/dbal/*"
|
|
],
|
|
"@dbal-ui/*": [
|
|
"../../dbal/shared/ui/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"e2e/**/*",
|
|
"next.config.ts",
|
|
"prisma.config.ts",
|
|
"vite.config.ts",
|
|
"vitest.config.ts",
|
|
"playwright.config.ts",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
"../../dbal/development/src/**/*",
|
|
"../../fakemui/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|