Initial Commit
Some checks failed
Publish to Private NPM Registry / publish (push) Failing after 1m0s

This commit is contained in:
Alan Bridgeman 2026-02-17 13:44:22 -06:00
commit 18cc482293
12 changed files with 4353 additions and 0 deletions

17
tsconfig.build.json Normal file
View file

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