tsconfig.json 456 B

12345678910111213141516
  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. "lib": ["es2023", "dom", "dom.iterable"],
  9. "module": "ESNext",
  10. "moduleResolution": "bundler",
  11. "noEmit": true,
  12. "strict": true,
  13. "types": ["vite/client", "node"]
  14. },
  15. "include": [".storybook/**/*.ts", ".storybook/**/*.tsx"]
  16. }