10 lines
154 B
Nix
10 lines
154 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
with pkgs;
|
|
mkShell {
|
|
buildInputs = with pkgs; with nodePackages_latest; [
|
|
typescript
|
|
nodejs
|
|
ts-node
|
|
];
|
|
}
|