opencode_offline/packages/ui/tsconfig.json

22 lines
555 B
JSON
Raw Normal View History

2025-10-14 20:14:26 +08:00
{
2025-10-31 01:13:02 +08:00
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node22/tsconfig.json",
2025-10-14 20:14:26 +08: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 20:14:26 +08:00
// Type Checking & Safety
"strict": true,
2025-11-07 02:03:02 +08:00
"types": ["vite/client", "bun"]
2025-10-14 20:14:26 +08:00
}
}