tsconfig.e2e.json 357 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "lib": ["ES2022"],
  5. "module": "CommonJS",
  6. "moduleResolution": "node",
  7. "skipLibCheck": true,
  8. "strict": true,
  9. "noUnusedLocals": true,
  10. "noUnusedParameters": true,
  11. "esModuleInterop": true,
  12. "outDir": "./node_modules/.tmp/e2e"
  13. },
  14. "include": ["e2e", "playwright.config.ts"]
  15. }