Inital code commit
Some checks failed
Build, Test, and Publish (to Private NPM Registry) UI Components Library / publish (push) Failing after 52m26s

This commit is contained in:
Alan Bridgeman 2026-05-13 01:39:35 -05:00
commit 5024375e20
32 changed files with 5379 additions and 0 deletions

22
tsconfig.build.json Normal file
View file

@ -0,0 +1,22 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"types": [],
// Other Outputs
"sourceMap": true,
},
"include": [
"./src/**/*.tsx",
"./src/**/*.ts"
],
"exclude": [
"node_modules",
"./tests", // <--- Explicitly exclude tests
"./**/*.test.ts",
"./**/*.spec.ts"
]
}