Files
opencode/packages/ui/tsconfig.json
Adam 05d77b7d47 chore: storybook (#15285)
Co-authored-by: David Hill <iamdavidhill@gmail.com>
2026-02-26 16:05:04 -06:00

23 lines
600 B
JSON

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