tsconfig.json 456 B

123456789101112131415161718192021
  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": ["app/frontend/**/*", "./vite.config.*", "./histoire.config.*"],
  13. "exclude": [
  14. "app/frontend/cypress/**/*",
  15. "**/*.cy.ts",
  16. "**/.cypress/**/*",
  17. "node_modules",
  18. "public",
  19. "vendor"
  20. ]
  21. }