NixOS/shells/js.nix

10 lines
128 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
pnpm
typescript-language-server
];
}