中泽后台管理前端
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 626B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "importHelpers": true,
  7. // "jsx": "preserve",
  8. "jsx": "react",
  9. "tsx": "react",
  10. "esModuleInterop": true,
  11. "sourceMap": true,
  12. "baseUrl": "/product_back_stage/",
  13. "skipLibCheck": true,
  14. "experimentalDecorators": true,
  15. "strict": true,
  16. "resolveJsonModule": true,
  17. "allowSyntheticDefaultImports": true,
  18. "paths": {
  19. "@/*": ["./src/*"],
  20. "@@/*": ["./src/.umi/*"],
  21. "@@test/*": ["./src/.umi-test/*"]
  22. }
  23. },
  24. "include": ["./**/*.d.ts", "./**/*.ts", "./**/*.tsx"]
  25. }