This project can be accessed here
- npm init to start package.json file
- tsc --init to start typescript config file
- set the configurations on tsconfig
- target: es6
- rootDir: ./src
- sourceMap: true
- outDir: ./dist
- exclude: [node_modules]
- set up run (lite-server) and watch script
- set up debug config for vscode
- add gitignore file
Single file project following course instructions
- Separated code into files using namespaces
- Added some scripts to run and build
- Changed namespaces to esmodule
- Added script to push dist files to github pages branch
- Added webpack to build project
- Remove script that pushed dist files to github pages due to use of github actions to build and distribute project