tsconfig.json 828 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "Node",
  6. "strict": true,
  7. "jsx": "preserve",
  8. "baseUrl": ".",
  9. "paths": {
  10. "@/*": [
  11. "src/*"
  12. ],
  13. "assets/*": [
  14. "src/assets/*"
  15. ],
  16. "components/*": [
  17. "src/components/*"
  18. ],
  19. "views/*": [
  20. "src/views/*"
  21. ]
  22. },
  23. "types": [
  24. "node"
  25. ],
  26. "typeRoots": [
  27. "./node_modules/@types",
  28. "./src/types"
  29. ],
  30. "resolveJsonModule": true,
  31. "allowSyntheticDefaultImports": true,
  32. "noImplicitAny": false,
  33. },
  34. "include": [
  35. "src/**/*.ts",
  36. "src/**/*.d.ts",
  37. "src/**/*.tsx",
  38. "src/**/*.vue",
  39. "auto-imports.d.ts",
  40. "components.d.ts"
  41. ],
  42. "references": [
  43. {
  44. "path": "./tsconfig.node.json"
  45. }
  46. ]
  47. }