Add TypeScript configuration for Playwright tests
Add proper TypeScript setup with tsconfig.json and type definitions to resolve type errors in the e2e test files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
e4cb9e5abc
commit
12dfa67894
3 changed files with 50 additions and 2 deletions
13
tests/tsconfig.json
Normal file
13
tests/tsconfig.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2020",
|
||||
"module": "commonjs",
|
||||
"lib": ["ES2020", "DOM"],
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "node",
|
||||
"noEmit": true
|
||||
},
|
||||
"include": ["e2e/**/*.ts"]
|
||||
}
|
||||
Loading…
Reference in a new issue