tsconfig.json 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.web.json",
  3. "compilerOptions": {
  4. "target": "esnext",
  5. "module": "esnext",
  6. "moduleResolution": "node",
  7. "strict": true,
  8. "noLib": false,
  9. "forceConsistentCasingInFileNames": true,
  10. "allowSyntheticDefaultImports": true,
  11. "strictFunctionTypes": false,
  12. "jsx": "preserve",
  13. "baseUrl": ".",
  14. "allowJs": true,
  15. "sourceMap": true,
  16. "esModuleInterop": true,
  17. "resolveJsonModule": true,
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "experimentalDecorators": true,
  21. "lib": ["dom", "esnext"],
  22. "noImplicitAny": false,
  23. "skipLibCheck": true,
  24. "removeComments": true,
  25. "types": ["webpack-env", "unplugin-vue-define-options"],
  26. "paths": {
  27. "@/*": ["src/*"]
  28. }
  29. },
  30. "include": [
  31. "mock/**/*",
  32. "src/**/*.ts",
  33. "**/*.d.ts",
  34. "src/**/*.tsx",
  35. "src/**/*.vue",
  36. "types/**/*.d.ts",
  37. "types/**/*.ts"
  38. ],
  39. "exclude": ["node_modules", "dist", "**/*.js", "**/*.md", "src/**/*.md"]
  40. }