tsconfig.json 762 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "ignoreDeprecations": "5.0",
  4. "outDir": "build/dist",
  5. "module": "esnext",
  6. "target": "esnext",
  7. "lib": ["esnext", "dom"],
  8. "sourceMap": true,
  9. "baseUrl": ".",
  10. "jsx": "react",
  11. "allowSyntheticDefaultImports": true,
  12. "moduleResolution": "node",
  13. "forceConsistentCasingInFileNames": true,
  14. "noImplicitReturns": true,
  15. "suppressImplicitAnyIndexErrors": true,
  16. "noUnusedLocals": true,
  17. "allowJs": true,
  18. "skipLibCheck": true,
  19. "experimentalDecorators": true,
  20. "strict": true,
  21. "paths": {
  22. "@/*": ["./src/*"],
  23. "@@/*": ["./src/.umi/*"],
  24. "@@@/*": ["./*"]
  25. }
  26. },
  27. "exclude": ["node_modules", "build", "dist1", "dist", "scripts", "src/.umi/*", "webpack", "jest"]
  28. }