You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 882B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "lib": [
  6. "dom",
  7. "dom.iterable",
  8. "esnext"
  9. ],
  10. "allowJs": true,
  11. "skipLibCheck": true,
  12. "moduleResolution": "bundler",
  13. "importHelpers": true,
  14. "noEmit": true,
  15. "jsx": "react-jsx",
  16. "esModuleInterop": true,
  17. "sourceMap": true,
  18. "baseUrl": "../../",
  19. "strict": true,
  20. "resolveJsonModule": true,
  21. "allowSyntheticDefaultImports": true,
  22. "paths": {
  23. "@/*": [
  24. "src/*"
  25. ],
  26. "@@/*": [
  27. "src/.umi/*"
  28. ],
  29. "@umijs/max": [
  30. "E:\\项目\\outpackage\\rencaishichanghoutai\\node_modules\\umi"
  31. ],
  32. "@umijs/max/typings": [
  33. "src/.umi/typings"
  34. ]
  35. }
  36. },
  37. "include": [
  38. "../../.umirc.ts",
  39. "../../.umirc.*.ts",
  40. "../../**/*.d.ts",
  41. "../../**/*.ts",
  42. "../../**/*.tsx"
  43. ]
  44. }