中泽后台管理前端
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }