This commit is contained in:
yinsx
2026-01-05 10:14:33 +08:00
commit cf0b049abf
33 changed files with 3130 additions and 0 deletions

15
tsconfig.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"allowJs": true,
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"strict": false,
"noEmit": true,
"types": ["vite/client"]
},
"include": ["src/**/*", "index.html"]
}