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>
13 lines
267 B
JSON
13 lines
267 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": ["ES2020", "DOM"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"noEmit": true
|
|
},
|
|
"include": ["e2e/**/*.ts"]
|
|
}
|