Update lockfile and deps

Aligned Bun lock with extensive dependency list and config, reflecting complete lockfile regeneration and package updates.

X-Lovable-Edit-ID: edt-313f4b54-c92a-482e-9061-ea7475544694
This commit is contained in:
gpt-engineer-app[bot] 2026-03-07 21:24:40 +00:00
commit ea7f907fbf
3 changed files with 1267 additions and 33 deletions

1222
bun.lock Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,31 +1,35 @@
{ {
"compilerOptions": { "compilerOptions": {
"types": ["vitest/globals"],
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true, "allowImportingTsExtensions": true,
"isolatedModules": true, "isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx", "jsx": "react-jsx",
"lib": [
/* Linting */ "ES2020",
"strict": false, "DOM",
"DOM.Iterable"
],
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noUnusedLocals": false, "noUnusedLocals": false,
"noUnusedParameters": false, "noUnusedParameters": false,
"noImplicitAny": false,
"noFallthroughCasesInSwitch": false,
"baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": [
} "./src/*"
]
}, },
"include": ["src"] "skipLibCheck": true,
"strict": false,
"target": "ES2020",
"types": [
"vitest/globals"
],
"useDefineForClassFields": true
},
"include": [
"src"
]
} }

View file

@ -1,16 +1,24 @@
{ {
"files": [],
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }],
"compilerOptions": { "compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"noImplicitAny": false,
"noUnusedParameters": false,
"skipLibCheck": true,
"allowJs": true, "allowJs": true,
"noImplicitAny": false,
"noUnusedLocals": false, "noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"@/*": [
"./src/*"
]
},
"skipLibCheck": true,
"strictNullChecks": false "strictNullChecks": false
},
"files": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.node.json"
} }
]
} }