tsconfig.json 518 B

123456789101112131415161718
  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. "@opencode-ai/plugin": ["./packages/plugin/src"],
  13. "@opencode-ai/sdk": ["./packages/sdk/js/src"],
  14. "@/*": ["./src/*"],
  15. "@test/*": ["./test/*"]
  16. }
  17. }
  18. }