diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-11T17·07+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-11T17·11+0000 |
commit | 85cdd46f0082afb8ed09dcb0983071daa6bde38c (patch) | |
tree | 0c18373982f3621b3a5408690faf4f5de6443d33 /.gitignore | |
parent | 3afb56a5e5274611c3c5d0f7e2f4a8965575ff40 (diff) |
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 <file>`, which is easy enough to remember, but I'd still rather just call `run <file>`.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index cda768f08fe4..115d4f1a0b16 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ __pycache__ /monzo_ynab/ynab/fixture.json /monzo_ynab/monzo/fixture.json /monzo_ynab/kv.json +node_modules/ |