refactor(example): use tsconfig and change entries to ts (#3575)

This commit is contained in:
Tony
2026-09-09 19:31:52 +08:00
committed by GitHub
parent b48d52cf6e
commit 2a5783397e
4 changed files with 6 additions and 4 deletions
@@ -8,7 +8,7 @@ import App from './App.svelte'
import { mount } from 'svelte'
const app = mount(App, {
target: document.querySelector('#app')
target: document.querySelector('#app')!
})
export default app