10 lines
128 B
Nix
10 lines
128 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
pnpm
|
|
typescript-language-server
|
|
];
|
|
}
|