Initial code commit

This commit is contained in:
Alan Bridgeman 2023-06-19 09:15:51 -05:00
parent 80a09db0d7
commit c5268ad9b3
18 changed files with 1560 additions and 0 deletions

10
tsconfig.json Normal file
View file

@ -0,0 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"noImplicitAny": false,
"esModuleInterop": true,
"sourceMap": false,
"outDir": "dist"
},
}