chore: add bun types to global tsconfig

Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
This commit is contained in:
2026-04-28 20:07:05 -04:00
parent d77a006ded
commit ddadc7d5ae
3 changed files with 8 additions and 1 deletions

View File

@@ -4,6 +4,9 @@
"workspaces": { "workspaces": {
"": { "": {
"name": "marketplace-scrapers-monorepo", "name": "marketplace-scrapers-monorepo",
"dependencies": {
"@types/bun": "1.3.13",
},
"devDependencies": { "devDependencies": {
"@biomejs/biome": "2.3.11", "@biomejs/biome": "2.3.11",
"@tsconfig/bun": "catalog:", "@tsconfig/bun": "catalog:",

View File

@@ -31,5 +31,8 @@
"@biomejs/biome": "2.3.11", "@biomejs/biome": "2.3.11",
"@tsconfig/bun": "catalog:", "@tsconfig/bun": "catalog:",
"turbo": "2.5.4" "turbo": "2.5.4"
},
"dependencies": {
"@types/bun": "1.3.13"
} }
} }

View File

@@ -19,6 +19,7 @@
"noImplicitOverride": true, "noImplicitOverride": true,
"noUnusedLocals": false, "noUnusedLocals": false,
"noUnusedParameters": false, "noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false "noPropertyAccessFromIndexSignature": false,
"types": ["@types/bun"]
} }
} }