mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Merge pull request #4024 from storybooks/core/allow-jsx-out-of-the-box
Bring .jsx back
This commit is contained in:
commit
312d7ca2a6
@ -76,7 +76,7 @@ export default ({ configDir, quiet, babelOptions }) => {
|
|||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: /\.js$/,
|
test: /\.jsx?$/,
|
||||||
use: [
|
use: [
|
||||||
{
|
{
|
||||||
loader: require.resolve('babel-loader'),
|
loader: require.resolve('babel-loader'),
|
||||||
@ -99,7 +99,7 @@ export default ({ configDir, quiet, babelOptions }) => {
|
|||||||
resolve: {
|
resolve: {
|
||||||
// Since we ship with json-loader always, it's better to move extensions to here
|
// Since we ship with json-loader always, it's better to move extensions to here
|
||||||
// from the default config.
|
// from the default config.
|
||||||
extensions: ['.js', '.json'],
|
extensions: ['.js', '.jsx', '.json'],
|
||||||
// Add support to NODE_PATH. With this we could avoid relative path imports.
|
// 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
|
// Based on this CRA feature: https://github.com/facebookincubator/create-react-app/issues/253
|
||||||
modules: ['node_modules'].concat(nodePaths),
|
modules: ['node_modules'].concat(nodePaths),
|
||||||
|
@ -58,7 +58,7 @@ export default ({ configDir, babelOptions }) => {
|
|||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: /\.js$/,
|
test: /\.jsx?$/,
|
||||||
use: [
|
use: [
|
||||||
{
|
{
|
||||||
loader: require.resolve('babel-loader'),
|
loader: require.resolve('babel-loader'),
|
||||||
@ -81,7 +81,7 @@ export default ({ configDir, babelOptions }) => {
|
|||||||
resolve: {
|
resolve: {
|
||||||
// Since we ship with json-loader always, it's better to move extensions to here
|
// Since we ship with json-loader always, it's better to move extensions to here
|
||||||
// from the default config.
|
// from the default config.
|
||||||
extensions: ['.js', '.json'],
|
extensions: ['.js', '.jsx', '.json'],
|
||||||
// Add support to NODE_PATH. With this we could avoid relative path imports.
|
// 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
|
// Based on this CRA feature: https://github.com/facebookincubator/create-react-app/issues/253
|
||||||
modules: ['node_modules'].concat(nodePaths),
|
modules: ['node_modules'].concat(nodePaths),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user