summaryrefslogtreecommitdiff
path: root/shell.nix
blob: 1571649ea7482677c9d062c1e86b82e299a657aa (plain) (blame)
1
2
3
4
5
6
7
8
9
with (import <nixpkgs> { });
mkShell {
  buildInputs = [
    nodejs-18_x
    nodePackages.typescript
    nodePackages.prettier
    nodePackages.eslint
  ];
}