tsconfig.json 449 B

1234567891011121314151617
  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. "types": [],
  9. "noUncheckedIndexedAccess": false,
  10. "customConditions": ["browser"],
  11. "paths": {
  12. "@/*": ["./src/*"],
  13. "@tui/*": ["./src/cli/cmd/tui/*"]
  14. }
  15. },
  16. "exclude": ["webgui/**/*"]
  17. }