tsconfig.json 383 B

123456789101112131415
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@tsconfig/bun/tsconfig.json",
  4. "compilerOptions": {
  5. "jsx": "preserve",
  6. "jsxImportSource": "@opentui/solid",
  7. "lib": ["ESNext", "DOM", "DOM.Iterable"],
  8. "customConditions": ["browser"],
  9. "baseUrl": ".",
  10. "paths": {
  11. "@/*": ["./src/*"],
  12. "@tui/*": ["./src/cli/cmd/tui/*"]
  13. }
  14. }
  15. }