aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 15a0536188e2d74ecffeb768dcbe9dc5a117d42b (plain) (blame)
1
2
3
4
5
6
7
8
9
with (import <nixpkgs> { });
mkShell {
  buildInputs = [
    nodejs_21
    nodePackages.typescript
    nodePackages.prettier
    nodePackages.eslint
  ];
}