tsconfig.json 786 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "moduleResolution": "node",
  8. "experimentalDecorators": true,
  9. "allowJs": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "useDefineForClassFields": true,
  15. "sourceMap": true,
  16. "baseUrl": ".",
  17. "types": [
  18. "webpack-env"
  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. }