- Created Playwright configuration file to set up testing environment. - Added a new e2e test for user authentication in login.spec.ts. - Updated tsconfig.node.json to include playwright.config.ts. - Enhanced vite.config.ts to include API proxying for backend integration. - Added a placeholder for last run test results in .last-run.json.
19 lines
433 B
JSON
19 lines
433 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ESNext"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["vite.config.ts", "playwright.config.ts"]
|
|
}
|