This commit is contained in:
2026-09-12 14:19:56 +08:00
commit 87ab0b794b
130 changed files with 30042 additions and 0 deletions

21
tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "ES2021",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"types": ["node", "vitest/globals", "@testing-library/jest-dom"],
"baseUrl": ".",
"paths": {
"@shared/*": ["src/shared/*"],
"@renderer/*": ["src/renderer/src/*"]
}
},
"include": ["src", "e2e", "*.config.ts", "vitest.setup.ts"]
}