tsconfig.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": false,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "experimentalDecorators": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "sourceMap": false,
  14. "baseUrl": ".",
  15. "types": [
  16. "webpack-env"
  17. ],
  18. "paths": {
  19. "@/*": [
  20. "src/*"
  21. ],
  22. "$components/*": [
  23. "src/components/*"
  24. ],
  25. "$mixins/*": [
  26. "src/mixins/*"
  27. ],
  28. "$config/*": [
  29. "src/config/*"
  30. ],
  31. "$assets/*": [
  32. "src/assets/*"
  33. ],
  34. "$views/*": [
  35. "src/views/*"
  36. ],
  37. "$utils/*": [
  38. "src/utils/*"
  39. ]
  40. },
  41. "lib": [
  42. "esnext",
  43. "dom",
  44. "dom.iterable",
  45. "scripthost"
  46. ]
  47. },
  48. "include": [
  49. "src/**/*.ts",
  50. "src/**/*.tsx",
  51. "src/**/*.vue",
  52. "tests/**/*.ts",
  53. "tests/**/*.tsx"
  54. ],
  55. "exclude": [
  56. "node_modules"
  57. ]
  58. }