jsconfig.json
557 Bytes
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"types": [
"vite/client",
"weixin-js-sdk"
],
"allowJs": true,
"checkJs": true,
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src/**/*.js",
"src/**/*.vue",
"src/**/*.json"
],
"exclude": [
"node_modules",
"dist",
"**/__tests__/*"
]
}