opencode_offline/packages/console/app/tsconfig.json

22 lines
496 B
JSON
Raw Normal View History

2025-08-16 07:29:24 +08:00
{
2025-08-30 12:58:22 +08:00
"$schema": "https://json.schemastore.org/tsconfig",
2025-08-16 07:29:24 +08:00
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
2025-09-02 15:18:13 +08:00
"skipLibCheck": true,
2025-08-16 07:29:24 +08:00
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"noEmit": true,
2025-09-10 11:43:37 +08:00
"types": ["vinxi/types/client"],
2025-08-16 07:29:24 +08:00
"isolatedModules": true,
"paths": {
2025-09-10 11:43:37 +08:00
"~/*": ["./src/*"]
2025-08-16 07:29:24 +08:00
}
}
}