chore(hololake): exclude generated desktop artifacts

This commit is contained in:
冰朔 2026-09-03 15:36:40 +08:00
commit 9e6056b77e
10 changed files with 5 additions and 4798 deletions

View file

@ -1,5 +1,9 @@
node_modules/
dist/
src-tauri/target/
src-tauri/gen/
*.tsbuildinfo
vite.config.js
vite.config.d.ts
*.log
.DS_Store

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
{"default":{"identifier":"default","description":"HoloLake clean shell: one typed IPC boundary plus signed update and native dialogs.","local":true,"windows":["main"],"permissions":["core:default","dialog:default","updater:default","process:allow-restart"]}}

View file

@ -1 +0,0 @@
{"root":["./src/app.tsx","./src/icons.tsx","./src/main.tsx","./src/runtime.ts","./src/types.ts","./src/vite-env.d.ts"],"version":"5.9.3"}

View file

@ -1,4 +1,4 @@
{
"compilerOptions": { "composite": true, "skipLibCheck": true, "module": "ESNext", "moduleResolution": "Bundler" },
"compilerOptions": { "composite": true, "skipLibCheck": true, "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true },
"include": ["vite.config.ts"]
}

File diff suppressed because one or more lines are too long

View file

@ -1,2 +0,0 @@
declare const _default: import("vite").UserConfig;
export default _default;

View file

@ -1,3 +0,0 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({ plugins: [react()], server: { port: 5211, strictPort: true }, clearScreen: false });