PushGo Auto Commit 2026-03-27T01:00:57.339Z

This commit is contained in:
2026-03-27 09:00:57 +08:00
commit eafa1ffd57
29 changed files with 3213 additions and 0 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"types": ["vite/client"]
},
"include": ["src/renderer", "src/shared", "vite.config.ts"]
}