Some checks failed
Build, Test, and Publish (to Private NPM Registry) UI Components Library / publish (push) Failing after 52m26s
22 lines
456 B
JSON
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"
|
|
]
|
|
}
|