diff --git a/bun.lock b/bun.lock index cd0b6c5..712c3a1 100644 --- a/bun.lock +++ b/bun.lock @@ -4,6 +4,9 @@ "workspaces": { "": { "name": "marketplace-scrapers-monorepo", + "dependencies": { + "@types/bun": "1.3.13", + }, "devDependencies": { "@biomejs/biome": "2.3.11", "@tsconfig/bun": "catalog:", diff --git a/package.json b/package.json index 2140d4b..42d6435 100644 --- a/package.json +++ b/package.json @@ -31,5 +31,8 @@ "@biomejs/biome": "2.3.11", "@tsconfig/bun": "catalog:", "turbo": "2.5.4" + }, + "dependencies": { + "@types/bun": "1.3.13" } } diff --git a/tsconfig.json b/tsconfig.json index 1546d17..4b0e933 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,6 +19,7 @@ "noImplicitOverride": true, "noUnusedLocals": false, "noUnusedParameters": false, - "noPropertyAccessFromIndexSignature": false + "noPropertyAccessFromIndexSignature": false, + "types": ["@types/bun"] } }