tsconfig.json 349 B

12345678910111213
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "types": [
  5. "vitest/globals",
  6. "vite/client",
  7. "vite-plugin-svg-icons/client",
  8. "vite-plugin-glob/client"
  9. ]
  10. },
  11. "include": ["app/frontend/**/*", ".storybook/config/**/*.ts"],
  12. "exclude": ["app/frontend/cypress/**/*", "node_modules", "public", "vendor"]
  13. }