tsconfig.json 548 B

123456789101112131415161718192021222324252627
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "lib": ["DOM", "WebWorker", "dom.iterable"],
  5. "types": [
  6. "@testing-library/jest-dom",
  7. "vitest/globals",
  8. "vite/client",
  9. "vite-plugin-svg-icons/client",
  10. "vite-plugin-pwa/client"
  11. ]
  12. },
  13. "include": [
  14. "app/frontend/**/*",
  15. "./vite.config.*",
  16. "./vitest.setup.ts",
  17. "./histoire.config.*"
  18. ],
  19. "exclude": [
  20. "app/frontend/cypress/**/*",
  21. "**/*.cy.ts",
  22. "**/.cypress/**/*",
  23. "node_modules",
  24. "public",
  25. "vendor"
  26. ]
  27. }