cloudaxe-opencode/packages/console/app/tsconfig.json

22 lines
513 B
JSON
Raw Permalink Normal View History

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