Skip to content

Commit

Permalink
fix: ensure js files are included in the final dist, exclude tests (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony9187 authored Sep 24, 2024
1 parent b1b18f8 commit 8c0b9f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/solid/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"extends": "../../tsconfig.json",
"exclude": ["./dist", "./node_modules", "./storybook-static"],
"exclude": ["./dist", "./node_modules", "./storybook-static", "./**/*.test.*"],
"no-emit": false,
"compilerOptions": {
"baseUrl": ".",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"outDir": "./dist",
Expand Down

0 comments on commit 8c0b9f2

Please sign in to comment.