fix: include bun types and test files in tsconfig
This commit is contained in:
@@ -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
@@ -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"]
|
||||
}
|
||||
Reference in New Issue
Block a user