Initial Commit
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 36s

This commit is contained in:
Alan Bridgeman 2026-02-18 08:55:30 -06:00
commit e0747f5405
14 changed files with 4785 additions and 0 deletions

20
tsconfig.build.json Normal file
View file

@ -0,0 +1,20 @@
{
"extends": "./tsconfig.json",
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// File Layout
"rootDir": "./src",
"outDir": "./dist",
"types": []
},
"exclude": [
"node_modules",
"dist",
"tests"
],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx"
]
}