Merge pull request #4024 from storybooks/core/allow-jsx-out-of-the-box

Bring .jsx back
This commit is contained in:
Pavan Kumar Sunkara 2018-08-16 16:29:31 +02:00 committed by GitHub
commit 312d7ca2a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -76,7 +76,7 @@ export default ({ configDir, quiet, babelOptions }) => {
module: {
rules: [
{
test: /\.js$/,
test: /\.jsx?$/,
use: [
{
loader: require.resolve('babel-loader'),
@ -99,7 +99,7 @@ export default ({ configDir, quiet, babelOptions }) => {
resolve: {
// Since we ship with json-loader always, it's better to move extensions to here
// from the default config.
extensions: ['.js', '.json'],
extensions: ['.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

@ -58,7 +58,7 @@ export default ({ configDir, babelOptions }) => {
module: {
rules: [
{
test: /\.js$/,
test: /\.jsx?$/,
use: [
{
loader: require.resolve('babel-loader'),
@ -81,7 +81,7 @@ export default ({ configDir, babelOptions }) => {
resolve: {
// Since we ship with json-loader always, it's better to move extensions to here
// from the default config.
extensions: ['.js', '.json'],
extensions: ['.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),