This commit is contained in:
zwt13703
2026-07-02 14:48:05 +08:00
parent a1a314cf99
commit e558733f05
64 changed files with 3258 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "ES2020", "module": "ESNext", "moduleResolution": "bundler",
"strict": true, "jsx": "preserve", "resolveJsonModule": true,
"isolatedModules": true, "esModuleInterop": true, "lib": ["ES2020", "DOM"],
"skipLibCheck": true, "noEmit": true,
"paths": { "@/*": ["./src/*"] }
},
"include": ["src/**/*.ts", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}