Created
April 18, 2021 16:12
-
-
Save jerhon/b3a39ee9180f3937f1a414ffc9163623 to your computer and use it in GitHub Desktop.
Setup Parcel Project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$project_dir="project_name" | |
mkdir $project_dir | |
cd $project_dir | |
npm init -y | |
# TODO: update npm license to MIT | |
# Add in commands to run parcel in develop / build | |
npm install typescript --save-dev | |
tsc --init | |
# TODO: command to update TSC to have jsx: React | |
npm install react react-dom @types/react-dom --save |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment