99AI/chat/tsconfig.json
2025-05-31 02:28:46 +08:00

25 lines
629 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"removeComments": true,
"paths": {
"@/*": ["./src/*"]
},
"types": ["vite/client", "node", "vue", "vue-i18n"]
},
"exclude": ["node_modules", "dist", "service", "electron"]
}