Skip to content

Commit

Permalink
feat(api): support building .jsx, .tsx files (#7638)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoar committed Feb 14, 2023
1 parent dd14393 commit 5b750aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/internal/src/files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const ignoreApiFiles = [
]

export const findApiFiles = (cwd: string = getPaths().api.src) => {
const files = fg.sync('**/*.{js,ts}', {
const files = fg.sync('**/*.{js,ts,jsx,tsx}', {
cwd,
absolute: true,
ignore: ignoreApiFiles,
Expand Down

0 comments on commit 5b750aa

Please sign in to comment.