fix: clean up tsconfig.json and remove Playwright references

- Remove @playwright/test from types array since Playwright was removed
- Update test documentation to use Jest-based tools instead
- Verify TypeScript compilation still works correctly
- Maintains working Jest types for existing tests
This commit is contained in:
William Valentin
2025-09-08 22:31:18 -07:00
parent da21692785
commit c4152c9061
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["node", "jest", "@playwright/test"],
"types": ["node", "jest"],
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",