cloudaxe-opencode/packages/ui/tsconfig.json

23 lines
600 B
JSON
Raw Permalink Normal View History

2025-10-14 12:14:26 +00:00
{
2025-10-30 17:13:02 +00:00
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node22/tsconfig.json",
2025-10-14 12:14:26 +00:00
"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"],
2025-10-14 12:14:26 +00:00
// Type Checking & Safety
"strict": true,
2025-11-06 18:03:02 +00:00
"types": ["vite/client", "bun"]
},
"exclude": ["**/*.stories.*", "**/*.mdx"]
2025-10-14 12:14:26 +00:00
}