tsconfig.json 774 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "skipLibCheck": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "useDefineForClassFields": true,
  14. "sourceMap": true,
  15. "baseUrl": ".",
  16. "types": [
  17. "webpack-env"
  18. ],
  19. "paths": {
  20. "@/*": [
  21. "src/*"
  22. ]
  23. },
  24. "lib": [
  25. "esnext",
  26. "dom",
  27. "dom.iterable",
  28. "scripthost"
  29. ],
  30. "allowJs": true
  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. }