refactor(stage-tamagotchi): rewrite it in rust (#90)

* chore: create tauri project, let window transparent

* chore: fix i18n

* chore: remove cocoa

* feat: open settings window

* feat: window controls shortcuts

* feat: system tray

* chore: install dependencies
This commit is contained in:
LemonNeko
2025-03-24 03:03:14 +08:00
committed by GitHub
parent 06a021b9de
commit 758e30a123
82 changed files with 11325 additions and 7 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsx": "preserve",
"lib": [
"DOM",
"ESNext"
],
"paths": {
"@proj-airi/stage-ui/*": [
"../../packages/stage-ui/src/*"
],
"@proj-airi/ui-transitions": [
"../../packages/ui-transitions/src/index.ts"
]
},
"resolveJsonModule": true,
"types": [
"vitest",
"vite/client",
"vite-plugin-vue-layouts/client",
"vite-plugin-pwa/client",
"unplugin-vue-macros/macros-global",
"unplugin-vue-router/client"
],
"allowJs": true,
"strict": true,
"skipLibCheck": true
},
"vueCompilerOptions": {
"plugins": [
"@vue-macros/volar/define-models",
"@vue-macros/volar/define-slots"
]
}
}