tsconfig.json 260 B

12345678910111213
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "noEmit": true,
  5. // be explicit about types included
  6. // to avoid clashing with Jest types
  7. "types": ["cypress"]
  8. },
  9. "include": [
  10. "../../node_modules/cypress",
  11. "./**/*.ts"
  12. ]
  13. }