ba-web-components/tsconfig.build.json
Alan Bridgeman 5024375e20
Some checks failed
Build, Test, and Publish (to Private NPM Registry) UI Components Library / publish (push) Failing after 52m26s
Inital code commit
2026-05-13 01:39:35 -05:00

22 lines
456 B
JSON

{
"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"
]
}