tsconfig.json 451 B

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