tsconfig.json 267 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "target": "ES5",
  5. "lib": [
  6. "ES5",
  7. "DOM"
  8. ],
  9. "types": [
  10. "cypress",
  11. "./support"
  12. ]
  13. },
  14. "include": [
  15. "../node_modules/cypress",
  16. "./**/*.ts",
  17. "../cypress.config.ts"
  18. ]
  19. }