Skip to content

Commit a671926

Browse files
author
Wouter de Vos
committed
1 parent f79f4c0 commit a671926

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/webpack/common.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ export default (_ssr: boolean /* <-- not currently used */) => {
8787
},
8888
],
8989
},
90+
{
91+
include: /node_modules/,
92+
test: /\.mjs$/,
93+
type: "javascript/auto",
94+
},
9095
],
9196
},
9297

@@ -98,7 +103,7 @@ export default (_ssr: boolean /* <-- not currently used */) => {
98103
alias: {
99104
"@": path.resolve(root, "src"),
100105
},
101-
extensions: [".ts", ".tsx", ".js"],
106+
extensions: [".ts", ".tsx", ".webpack.js", ".web.js", ".mjs", ".js"],
102107
modules: [
103108
path.resolve(root, "node_modules"),
104109
],

0 commit comments

Comments
 (0)