update packages
Build & Deploy / Build & Push Docker Image (push) Failing after 7s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / Type Check (all packages) (push) Failing after 10s
Test / API Unit Tests (push) Has been skipped
Test / Homepage Unit Tests (push) Has been skipped
Test / Storefront Unit Tests (push) Has been skipped
Test / Admin Unit Tests (push) Has been skipped
Test / Dashboard Unit Tests (push) Has been skipped
Test / API Integration Tests (push) Has been skipped

This commit is contained in:
root
2026-06-27 03:16:24 -04:00
parent 7392b094e0
commit a48285ecc5
7 changed files with 1424 additions and 1680 deletions
+1 -1
View File
@@ -40,6 +40,6 @@
"prettier": "^3.8.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.0"
"vitest": "^2.1.0"
}
}
+17 -5
View File
@@ -1,9 +1,13 @@
{
"compilerOptions": {
"target": "ES2024",
"lib": ["dom", "dom.iterable", "es2024"],
"lib": [
"dom",
"dom.iterable",
"es2024"
],
"allowJs": false,
"skipLibCheck": false,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
@@ -25,9 +29,14 @@
"useUnknownInCatchVariables": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true,
"types": ["vitest/globals", "@testing-library/jest-dom/vitest"],
"types": [
"vitest/globals",
"@testing-library/jest-dom/vitest"
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": [
@@ -43,5 +52,8 @@
"vitest.integration.config.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules", "contracts"]
"exclude": [
"node_modules",
"contracts"
]
}