tsconfig.config.json 341 B

1234567891011121314151617181920
  1. {
  2. "include": [
  3. "vite.config.*",
  4. "vitest.config.*",
  5. "cypress.config.*",
  6. "playwright.config.*",
  7. "vite/plugins/*"
  8. ],
  9. "compilerOptions": {
  10. "ignoreDeprecations": "5.0",
  11. "composite": true,
  12. "types": [
  13. "node"
  14. ],
  15. "verbatimModuleSyntax": false,
  16. "moduleResolution": "bundler",
  17. "module": "ESNext",
  18. "target": "ES2020"
  19. }
  20. }