tsconfig.json 540 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@tsconfig/node22/tsconfig.json",
  4. "compilerOptions": {
  5. "jsx": "preserve",
  6. "jsxImportSource": "solid-js",
  7. "target": "ESNext",
  8. "allowSyntheticDefaultImports": true,
  9. "esModuleInterop": true,
  10. "isolatedModules": true,
  11. "module": "ESNext",
  12. "moduleResolution": "bundler",
  13. "noEmit": true,
  14. "lib": ["es2023", "dom", "dom.iterable"],
  15. "strict": true,
  16. "types": ["vite/client", "bun"]
  17. },
  18. "exclude": ["**/*.stories.*", "**/*.mdx"]
  19. }