tsconfig.json 373 B

12345678910111213141516
  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. // turn off sourceMap
  9. // see: https://github.com/cypress-io/cypress/issues/26203
  10. "sourceMap": false
  11. },
  12. "include": [
  13. "../../node_modules/cypress",
  14. "./**/*.ts"
  15. ]
  16. }