Guest User

Untitled

a guest
Oct 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. "paths": {
  2. "@fs/*": ["src/*"],
  3. "@test/*": ["test/*"]
  4. }
  5.  
  6. module.exports = {
  7. roots: ["./src"],
  8. transform: {
  9. "^.+\.tsx?$": "ts-jest"
  10. },
  11. testRegex: "(/__tests__/.*|(\.|/)(test|spec))\.tsx?$",
  12. moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
  13. moduleNameMapper: {
  14. "@fs/*": ["src/*"]
  15. }
  16. };
  17.  
  18. moduleNameMapper: {
  19. "^@fs/(.*)$": ["<rootDir>/src/$1"]
  20. }
Add Comment
Please, Sign In to add comment