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
+14
View File
@@ -0,0 +1,14 @@
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import 'uno.css'
import './app.css'
import App from './App.svelte'
import { mount } from 'svelte'
const app = mount(App, {
target: document.querySelector('#app')!
})
export default app