tsconfig.json 324 B

123456789101112
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@tsconfig/node22/tsconfig.json",
  4. "compilerOptions": {
  5. "jsx": "preserve",
  6. "jsxImportSource": "solid-js",
  7. "module": "esnext",
  8. "moduleResolution": "bundler",
  9. "lib": ["ESNext", "DOM", "DOM.Iterable"],
  10. "types": ["vite/client"]
  11. }
  12. }