about summary refs log blame commit diff
path: root/boilerplate/typescript/shell.nix
blob: ec2a1ce833fae9e11236d47eda9c7ea7dedcb33e (plain) (tree)
1
2
3
4
5
6
7
8







                             
let
  pkgs = import <nixpkgs> {};
in pkgs.mkShell {
  buildInputs = with pkgs; [
    nodejs
    yarn
  ];
}