Skip to content

Commit

Permalink
perf(tsconfig): fix tsconfig (#80)
Browse files Browse the repository at this point in the history
Improve tsconfig to remove all tests and stories from the final package

Resolves #75

Signed-off-by: Niloy Sikdar <niloysikdar30@gmail.com>
  • Loading branch information
niloysikdar committed Aug 7, 2022
1 parent c7e04f8 commit e370c09
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,11 @@
"pretty": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.test.ts"]
"exclude": [
"node_modules",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.stories.ts",
"**/*.stories.tsx"
]
}

0 comments on commit e370c09

Please sign in to comment.