feat(app): 初始化项目基础结构- 添加 SvelteKit项目基础文件- 配置 Tauri 桌面应用支持- 集成 TailwindCSS 样式框架- 设置代码格式化与检查工具

- 添加开发与构建脚本
- 配置静态资源与路由文件
- 初始化版本控制忽略文件- 添加编辑器配置与代码风格设置
This commit is contained in:
Chaos
2025-11-04 11:45:29 +08:00
commit fdbb482b89
49 changed files with 7928 additions and 0 deletions

13
src/app.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};