| 123456789101112131415161718 |
- {
- "$schema": "https://json.schemastore.org/tsconfig",
- "extends": "@tsconfig/bun/tsconfig.json",
- "compilerOptions": {
- "jsx": "preserve",
- "jsxImportSource": "@opentui/solid",
- "lib": ["ESNext", "DOM", "DOM.Iterable"],
- "types": [],
- "noUncheckedIndexedAccess": false,
- "customConditions": ["browser"],
- "paths": {
- "@opencode-ai/plugin": ["./packages/plugin/src"],
- "@opencode-ai/sdk": ["./packages/sdk/js/src"],
- "@/*": ["./src/*"],
- "@test/*": ["./test/*"]
- }
- }
- }
|