| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "strict": true,
- "jsx": "preserve",
- "importHelpers": true,
- "moduleResolution": "node",
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "sourceMap": true,
- "baseUrl": ".",
- "allowJs": true,
- "noEmit": true,
- "types": [
- "vite/client",
- "@dcloudio/types"
- ],
- "paths": {
- "@/*": [
- "./*"
- ]
- },
- "lib": [
- "esnext",
- "dom",
- "dom.iterable",
- "scripthost"
- ]
- },
- "include": [
- "**/*.ts",
- "**/*.tsx",
- "**/*.vue"
- ],
- "exclude": [
- "node_modules",
- "unpackage"
- ]
- }
|