chore(deps): update dependency typescript to v6 (#732)
* chore(deps): update dependency typescript to v6 * chore: fix bun types in core package --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nicolas Meienberger <github@thisprops.com>
This commit is contained in:
parent
9e7f1bf138
commit
7add3dd517
4 changed files with 8 additions and 7 deletions
8
bun.lock
8
bun.lock
|
|
@ -107,7 +107,7 @@
|
|||
"tinyglobby": "^0.2.15",
|
||||
"turbo": "^2.8.20",
|
||||
"tw-animate-css": "^1.4.0",
|
||||
"typescript": "^5.9.3",
|
||||
"typescript": "^6.0.0",
|
||||
"vite": "^8.0.1",
|
||||
"vite-bundle-analyzer": "^1.2.3",
|
||||
"vitest": "^4.1.1",
|
||||
|
|
@ -117,10 +117,10 @@
|
|||
"packages/core": {
|
||||
"name": "@zerobyte/core",
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest",
|
||||
"@types/bun": "^1.3.11",
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5",
|
||||
"typescript": "^5 || ^6.0.0",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
@ -1952,7 +1952,7 @@
|
|||
|
||||
"type-fest": ["type-fest@5.4.4", "", { "dependencies": { "tagged-tag": "^1.0.0" } }, "sha512-JnTrzGu+zPV3aXIUhnyWJj4z/wigMsdYajGLIYakqyOW1nPllzXEJee0QQbHj+CTIQtXGlAjuK0UY+2xTyjVAw=="],
|
||||
|
||||
"typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
|
||||
"typescript": ["typescript@6.0.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ=="],
|
||||
|
||||
"ufo": ["ufo@1.6.3", "", {}, "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q=="],
|
||||
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@
|
|||
"tinyglobby": "^0.2.15",
|
||||
"turbo": "^2.8.20",
|
||||
"tw-animate-css": "^1.4.0",
|
||||
"typescript": "^5.9.3",
|
||||
"typescript": "^6.0.0",
|
||||
"vite": "^8.0.1",
|
||||
"vite-bundle-analyzer": "^1.2.3",
|
||||
"vitest": "^4.1.1",
|
||||
|
|
|
|||
|
|
@ -29,9 +29,9 @@
|
|||
"test": "bunx --bun vitest run --config ./vitest.config.ts"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest"
|
||||
"@types/bun": "^1.3.11"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5"
|
||||
"typescript": "^5 || ^6.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
"module": "Preserve",
|
||||
"moduleDetection": "force",
|
||||
"jsx": "react-jsx",
|
||||
"types": ["bun", "node"],
|
||||
"allowJs": true,
|
||||
|
||||
// Bundler mode
|
||||
|
|
|
|||
Loading…
Reference in a new issue