tsconfig.json 340 B

1234567891011121314
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@tsconfig/bun/tsconfig.json",
  4. "compilerOptions": {
  5. "jsx": "preserve",
  6. "jsxImportSource": "solid-js",
  7. "types": ["vite/client"],
  8. "lib": ["DOM", "DOM.Iterable"],
  9. "customConditions": ["development"],
  10. "paths": {
  11. "@/*": ["./src/*"]
  12. }
  13. }
  14. }