tsconfig.json 827 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "allowSyntheticDefaultImports": true,
  9. "strictFunctionTypes": false,
  10. "jsx": "preserve",
  11. "baseUrl": ".",
  12. "allowJs": true,
  13. "sourceMap": true,
  14. "esModuleInterop": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "experimentalDecorators": true,
  18. "lib": ["dom", "esnext"],
  19. "types": ["vite/client"],
  20. "incremental": true,
  21. "skipLibCheck": true,
  22. "paths": {
  23. "/@/*": ["src/*"]
  24. }
  25. },
  26. "plugins": [
  27. {
  28. "name": "@vuedx/typescript-plugin-vue"
  29. }
  30. ],
  31. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
  32. "exclude": ["node_modules", "dist", "**/*.js"]
  33. }