mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
- Created dbal/shared/ui directory for shared UI components - Implemented getStatusResponse() for status API endpoint - Implemented DBALDaemonPage component with metadata - Updated tsconfig.json @dbal-ui path to point to dbal/shared/ui - Updated next.config.ts webpack alias for @dbal-ui - Components support both development and production DBAL modes Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
64 lines
1.3 KiB
JSON
64 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"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/*"
|
|
],
|
|
"@/dbal": [
|
|
"../../dbal/development/src"
|
|
],
|
|
"@/dbal/*": [
|
|
"../../dbal/development/src/*"
|
|
],
|
|
"@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/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|