uglyboy-tl_obsidian-ink-player/tsconfig.json
Uglyboy ba3e5d84e0 refactor(core): migrate UI framework from Svelte to SolidJS
- Replace App.svelte with App.tsx SolidJS component
- Update view layer to use SolidJS render/dispose API
- Switch plugin imports from @inkweave/plugins/svelte to solidjs
- Adapt test stubs for framework-agnostic plugin loading
- Update build config (vite, tsconfig) for SolidJS JSX
- Replace svelte deps with solid-js/vite-plugin-solid
2026-05-08 16:25:18 +08:00

12 lines
321 B
JSON

{
"$schema": "https://www.schemastore.org/tsconfig",
"extends": ["@tsconfig/bun/tsconfig.json"],
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"lib": ["ESNext", "DOM"],
"types": ["bun-types", "vite/client"]
},
"include": ["src", "package.json"],
"exclude": ["dist"]
}