tsconfig.json 408 B

12345678910111213141516
  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": ["app/frontend/**/*", "./vite.config.*", "./vitest.setup.ts"],
  8. "exclude": [
  9. "app/frontend/cypress/**/*",
  10. "**/*.cy.ts",
  11. "**/.cypress/**/*",
  12. "node_modules",
  13. "public",
  14. "vendor"
  15. ]
  16. }