tsconfig.paths.json 485 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./packages/app/src",
  4. "paths": {
  5. "@styles/*": ["./styles/*"],
  6. "@assets/*": ["./assets/*"],
  7. "@routes": ["./routes/index"],
  8. "@apis": ["./apis/index"],
  9. "@components": ["./components/index"],
  10. "@hooks": ["./hooks/index"],
  11. "@pages": ["./pages/index"],
  12. "@pages/*": ["./pages/*"],
  13. "@stores": ["./stores/index"],
  14. "@models": ["./models/index"],
  15. "@utils": ["./utils/index"]
  16. }
  17. }
  18. }