增加 bun-types 依赖并调整 tsconfig 配置

This commit is contained in:
2026-05-21 13:21:18 +08:00
parent cb298f2099
commit e0b81c2114
3 changed files with 8 additions and 3 deletions
+4 -3
View File
@@ -8,9 +8,10 @@
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"noEmit": true,
"rootDir": "src",
"rootDir": ".",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"types": ["node", "bun-types"]
},
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts", "tests/**/*.ts"]
}