opencode/packages/session-ui/tsconfig.json
2026-06-24 14:56:09 +00:00

19 lines
540 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"target": "ESNext",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"lib": ["es2023", "dom", "dom.iterable"],
"strict": true,
"types": ["vite/client", "bun"]
},
"exclude": ["**/*.stories.*", "**/*.mdx"]
}