DEV Community

Discussion on: How to setup Development Environment on new Macbook Pro M1

Collapse
 
lukeannison profile image
LukeAnnison • Edited

Great article. Thanks very much for this. FYI there is a typo in the npm install --save-dev typescript tslint @type/node command. Types should be a plural, so:

npm install --save-dev typescript tslint @types/node

Also in index we are missing a string literal at the end.

Hope this helps!