tsconfig.json 810 B

1234567891011121314151617181920212223242526272829
  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. "lib": ["esnext", "dom"],
  13. "baseUrl": ".",
  14. "allowJs": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "allowSyntheticDefaultImports": true,
  17. "strictFunctionTypes": false,
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "experimentalDecorators": true,
  21. "noImplicitAny": false,
  22. "skipLibCheck": true,
  23. "paths": {
  24. "@/*": ["src/*"]
  25. },
  26. "types": ["vite/client", "@intlify/vite-plugin-vue-i18n/client"]
  27. },
  28. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
  29. }