Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 437 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 437 Bytes

Christmas GL

Learning WebGL during Christmas 2022.

Resources

Typescript

# Installation and initialization
npm install --save-dev typescript
npx tsc --init

# ...
# write stuff
# ...

# Compile
npm tsc

Interesting properties that could be modified from tsconfig.json are:

  • outDir to something like ./build/.
  • noImplicitAny to false.
  • strictNullChecks to false.