And as it turns out --- the issue was in my tsconfig in my linked package... make sure both tsconfigs are targeting the same module adding
"esModuleInterop": true,
"declaration": true,
"moduleResolution": "node",
"module": "esnext"
```
fixed it :)