2
0

tsconfig.json 277 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "types": ["node"],
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "noEmit": true
  11. },
  12. "include": ["src", "playwright.config.ts"]
  13. }