Skip to content

Commit

Permalink
feat(api): support building .jsx, .tsx files
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoar committed Feb 14, 2023
1 parent 4f05baf commit 0ab7bd6
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 0ab7bd6

Please sign in to comment.