From 85cdd46f0082afb8ed09dcb0983071daa6bde38c Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 11 Feb 2020 17:07:04 +0000 Subject: Attempt to support TypeScript for coding challenges I was a bit weaker than I expected to be in my most recent interview using TypeScript. To improve, I think I'd like to attempt solving some of the InterviewCake.com questions using TypeScript. If you've read the previous commits, the inspiration for `run` arose because I need to call `npx ts-code `, which is easy enough to remember, but I'd still rather just call `run `. --- deepmind/part_two/shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 deepmind/part_two/shell.nix (limited to 'deepmind/part_two/shell.nix') diff --git a/deepmind/part_two/shell.nix b/deepmind/part_two/shell.nix new file mode 100644 index 000000000000..606dd7167f7c --- /dev/null +++ b/deepmind/part_two/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {}, ... }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + nodejs + python3 + go + goimports + ]; +} -- cgit 1.4.1