mirror of
https://github.com/uglyboy-tl/obsidian-ink-player.git
synced 2026-07-22 05:42:02 +00:00
- 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
12 lines
321 B
JSON
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"]
|
|
}
|