#!/bin/sh

tsc -p ./tsconfig.build.json
tsc-alias -p ./tsconfig.build.json

# Copy all sql files to the dist folder
(cd app/database && tar cf - $(find . -name '*.sql')) | (cd .built/app/database && tar xvf -)
