fix: include bun types and test files in tsconfig

This commit is contained in:
2026-05-10 01:02:03 +02:00
parent 5fa30414d7
commit 210f7b414b
2 changed files with 4 additions and 2 deletions
+3 -2
View File
@@ -8,8 +8,9 @@
"outDir": "dist",
"rootDir": "src",
"skipLibCheck": true,
"esModuleInterop": true
"esModuleInterop": true,
"types": ["bun-types"]
},
"include": ["src/**/*.ts"],
"include": ["src/**/*.ts", "tests/**/*.ts"],
"exclude": ["dist", "node_modules"]
}