tsconfig.json 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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": "react",
  11. "baseUrl": ".",
  12. "allowJs": true,
  13. "sourceMap": true,
  14. "esModuleInterop": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "experimentalDecorators": true,
  18. "lib": [
  19. "dom",
  20. "esnext"
  21. ],
  22. "incremental": true,
  23. "skipLibCheck": true,
  24. "paths": {
  25. "/@/*": [
  26. "src/*"
  27. ]
  28. }
  29. },
  30. "plugins": [
  31. {
  32. "name": "@vuedx/typescript-plugin-vue"
  33. }
  34. ],
  35. "include": [
  36. "src/**/*.ts",
  37. "src/**/*.d.ts",
  38. "src/**/*.tsx",
  39. "src/**/*.vue"
  40. ],
  41. "exclude": [
  42. "node_modules",
  43. "dist",
  44. "**/*.js"
  45. ]
  46. }