Skip to content

Commit

Permalink
Merge pull request #511 from yue4u/fix/skip-build-story-and-test-dts
Browse files Browse the repository at this point in the history
fix: skip build story and test dts
  • Loading branch information
toshusai authored Apr 12, 2024
2 parents 61f0fd6 + e3df4dc commit 6a697f9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion packages/react-sandbox/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,11 @@
"outDir": "./dist",
"tsBuildInfoFile": "./.tsbuildinfo"
},
"include": ["./src"]
"include": ["./src"],
"exclude": [
"./src/**/*.story.ts",
"./src/**/*.story.tsx",
"./src/**/*.test.ts",
"./src/**/*.test.tsx"
]
}
8 changes: 7 additions & 1 deletion packages/react/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,11 @@
"outDir": "./dist",
"tsBuildInfoFile": "./.tsbuildinfo"
},
"include": ["./src"]
"include": ["./src"],
"exclude": [
"./src/**/*.story.ts",
"./src/**/*.story.tsx",
"./src/**/*.test.ts",
"./src/**/*.test.tsx"
]
}

0 comments on commit 6a697f9

Please sign in to comment.