tsconfig.json 981 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "useDefineForClassFields": true,
  5. "module": "esnext",
  6. "moduleResolution": "node",
  7. "strict": true,
  8. "jsx": "preserve",
  9. "sourceMap": true,
  10. "resolveJsonModule": true,
  11. "esModuleInterop": true,
  12. "jsxImportSource": "vue",
  13. "lib": ["esnext", "dom"],
  14. "baseUrl": "./",
  15. "allowJs": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "allowSyntheticDefaultImports": true,
  18. "strictFunctionTypes": false,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "experimentalDecorators": true,
  22. "noImplicitAny": false,
  23. "skipLibCheck": true,
  24. "paths": {
  25. "@/*": ["src/*"]
  26. },
  27. "types": [
  28. "@intlify/unplugin-vue-i18n/types",
  29. "vite/client",
  30. "element-plus/global",
  31. "@types/qrcode",
  32. "vite-plugin-svg-icons/client"
  33. ]
  34. },
  35. "include": ["src/**/*.d.ts", "src", "types/**/*.d.ts", "mock/**/*.ts"]
  36. // "exclude": ["dist", "node_modules"]
  37. }