Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit 1e05eff

Browse files
hanskrdigitalsadhu
authored andcommitted
fix: allow bundling of ts/tsx files
1 parent 65f97b9 commit 1e05eff

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/reader.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ module.exports = async (feeds, options) => {
6969
})
7070
);
7171

72-
const bundler = browserify({ entries, debug: opts.sourceMaps });
72+
const bundler = browserify(entries, {
73+
debug: opts.sourceMaps,
74+
extensions: ['.js', '.es', '.es6', '.jsx', '.tsx', '.ts'],
75+
});
7376

7477
bundler.transform(envify, {
7578
_: 'purge',

0 commit comments

Comments
 (0)