tgunn
tgunn
I think the better route would be to move forward with flakes as much of the nix community is doing https://github.com/erikarvstedt/extra-container/issues/19
I would recommend looking at kitty https://sw.kovidgoyal.net/kitty/graphics-protocol.html
See this PR. you don't need to use `npx`, as typescript exists in nixpkgs as `nixpkgs.nodePackages.typescript`. As for ts-node, add it as a shell hook from your built package. run...
Oh, I suppose I didn't even get to that point to see that. Good to know! I think local references to unpacked projects would still encounter this error? I'll check...
peerDependencies aren't resolved because they were removed a bit ago, because: https://github.com/nix-community/dream2nix/issues/117#issuecomment-1107644910 I'd use an injection temporarily
The error I get is: `src/Cardano/types/TxSubmissionErrors.ts:10:14 - error TS2742: The inferred type of 'TxSubmissionErrors' cannot be named without a reference to '@cardano-sdk/core/node_modules/@cardano-ogmios/schema'. This is likely not portable. A type annotation...
I *think* it has something to do with typescript or npm expecting only local references, and it receives references from outside of its local `node_modules`. Also, you don't need to...
@MatthewCroughan that's because it was based off of this fix: https://github.com/MatthewCroughan/filestash-nix/blob/master/pkgs/filestash/default.nix#L17-L26 You can remove that now.
That would probably address the case here as well: https://github.com/nix-community/dream2nix/issues/303
@DavHau I was wrong. apologies. Here's a minimal repository that demonstrates the issue. Basically, in yarn v1 workspaces the dependencies can be "hoisted" to the root package.json so that all...