This commit is contained in:
2026-05-21 00:30:05 +08:00
parent 4ba2b730de
commit 18a14111f8
13 changed files with 345 additions and 7 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"composite": true,
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"outDir": "./out/types",
"paths": {
"@renderer/*": ["./src/renderer/src/*"]
}
},
"include": ["src/renderer/**/*"]
}