tsconfig.json 867 B

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