2026-04-30 16:59:06 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"lib": ["ESNext", "DOM"],
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"baseUrl": ".",
|
2026-04-30 18:48:40 +08:00
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"@xuqm/vue3-sdk": ["../XuqmGroup-Vue3SDK/dist/index.d.ts"]
|
|
|
|
|
},
|
|
|
|
|
"types": ["vite/client"]
|
2026-04-30 16:59:06 +08:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.vue"]
|
|
|
|
|
}
|