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
+1
View File
@@ -4,4 +4,5 @@
- Added unit coverage for invalid JSON, empty output, nested group path forwarding, and keyFile payloads.
- Added integration coverage for creating groups on temporary copies.
- Latest test run passed: 20 tests, 0 failures.
- VS Code red squiggles on Bun/Node imports were addressed by including `bun-types` in `tsconfig.json` and covering `tests/**/*.ts`.
- Project renamed to ts-pykeepass-wrapper; current focus remains the TypeScript wrapper + Python bridge for KeePass.
+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"]
}