tsconfig.json 497 B

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