Hi everyone,
I used this script to add license header to all source files:
for f in **/*.{ts,js}; do cat license-header.txt $f > $f.new mv $f.new $f done
I also add the license-header.txt file.
license-header.txt
Feel free to comment my PR ! ;-)