axios-miniprogram/docs/tsconfig.json

27 lines
668 B
JSON
Raw Permalink Normal View History

2023-03-25 14:16:10 +08:00
{
2023-03-25 16:22:01 +08:00
"extends": "../tsconfig.json",
2023-03-25 14:16:10 +08:00
"compilerOptions": {
"baseUrl": ".",
"module": "esnext",
"target": "esnext",
"lib": ["DOM", "ESNext"],
"strict": true,
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": ["vite/client", "vite-plugin-pwa/client", "vitepress"]
},
"include": [
"./.vitepress/**/*.ts",
"./.vitepress/**/*.vue",
2023-03-25 16:22:01 +08:00
"./.vitepress/components.d.ts",
"../global.d.ts"
2023-03-25 14:16:10 +08:00
],
"exclude": ["dist", "node_modules"]
}