tsconfig.json 826 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "compilerOptions": {
  3. "target": "ES2016",
  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. "jest",
  20. "node"
  21. ],
  22. "paths": {
  23. "@/*": [
  24. "src/*"
  25. ]
  26. },
  27. "lib": [
  28. "esnext",
  29. "dom",
  30. "dom.iterable",
  31. "scripthost"
  32. ]
  33. },
  34. "include": [
  35. "src/**/*.ts",
  36. "src/**/*.tsx",
  37. "src/**/*.vue",
  38. "tests/**/*.ts",
  39. "tests/**/*.tsx"
  40. ],
  41. "exclude": [
  42. "node_modules",
  43. "dist"
  44. ]
  45. }