Merge pull request #4708 from dumbNickname/mjs-support

Change extensions ordering in webpack config
This commit is contained in:
Igor 2018-11-05 18:53:31 +02:00 committed by GitHub
commit e79b3af122
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ export default ({ configDir, quiet, babelOptions, entries }) => {
resolve: {
// Since we ship with json-loader always, it's better to move extensions to here
// from the default config.
extensions: ['.js', '.jsx', '.json', '.mjs'],
extensions: ['.mjs', '.js', '.jsx', '.json'],
// Add support to NODE_PATH. With this we could avoid relative path imports.
// Based on this CRA feature: https://github.com/facebookincubator/create-react-app/issues/253
modules: ['node_modules'].concat(nodePaths),

View File

@ -80,7 +80,7 @@ export default ({ configDir, babelOptions, entries }) => {
resolve: {
// Since we ship with json-loader always, it's better to move extensions to here
// from the default config.
extensions: ['.js', '.jsx', '.json', '.mjs'],
extensions: ['.mjs', '.js', '.jsx', '.json'],
// Add support to NODE_PATH. With this we could avoid relative path imports.
// Based on this CRA feature: https://github.com/facebookincubator/create-react-app/issues/253
modules: ['node_modules'].concat(nodePaths),