tsconfig.json 651 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "experimentalDecorators": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "allowJs": true,
  13. "sourceMap": true,
  14. "baseUrl": "./",
  15. "types": [
  16. "vuetify",
  17. "webpack-env",
  18. "jest"
  19. ],
  20. "paths": {
  21. "@/*": [
  22. "src/*"
  23. ]
  24. },
  25. "lib": [
  26. "esnext",
  27. "dom",
  28. "dom.iterable",
  29. "scripthost"
  30. ]
  31. },
  32. "include": [
  33. "src/**/*.ts",
  34. "src/**/*.tsx",
  35. "src/**/*.vue",
  36. "tests/**/*.ts",
  37. "tests/**/*.tsx"
  38. ],
  39. "exclude": [
  40. "node_modules"
  41. ]
  42. }