This commit is contained in:
2025-11-06 02:27:46 +11:00
commit e5d558fd98
51 changed files with 11385 additions and 0 deletions

13
tsconfig.renderer.json Normal file
View File

@@ -0,0 +1,13 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"jsx": "react-jsx",
"module": "ESNext",
"target": "ES2021",
"allowJs": false,
"noEmit": true,
"types": ["node", "vite/client"],
"composite": true
},
"include": ["src/renderer/src/**/*", "src/shared/**/*.ts"]
}