tsconfig.json 903 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "forceConsistentCasingInFileNames": true,
  14. "sourceMap": true,
  15. "baseUrl": ".",
  16. "allowJs": true,
  17. "resolveJsonModule": true, // 包含导入的模块。json的扩展
  18. "lib": [
  19. "dom",
  20. "esnext"
  21. ],
  22. "incremental": true,
  23. "paths": {
  24. "/@/*": [
  25. "src/*"
  26. ]
  27. },
  28. "types": ["node"],
  29. "typeRoots": [
  30. "node_modules/@types"
  31. ],
  32. },
  33. "include": [
  34. "src/**/*.ts",
  35. "src/**/*.tsx",
  36. "src/**/*.vue",
  37. "tests/**/*.ts",
  38. "src/utils/path.js"
  39. ],
  40. "exclude": [
  41. "node_modules",
  42. "dist",
  43. "**/*.js"
  44. ],
  45. }