diff --git a/code/frameworks/nextjs/package.json b/code/frameworks/nextjs/package.json index 98623f6e20e..afafb883774 100644 --- a/code/frameworks/nextjs/package.json +++ b/code/frameworks/nextjs/package.json @@ -58,6 +58,7 @@ "prepare": "../../../scripts/prepare/bundle.ts" }, "dependencies": { + "@babel/preset-typescript": "^7.18.6", "@storybook/addons": "7.0.0-alpha.38", "@storybook/builder-webpack5": "7.0.0-alpha.38", "@storybook/core-common": "7.0.0-alpha.38", diff --git a/code/frameworks/nextjs/src/config/babel.ts b/code/frameworks/nextjs/src/config/babel.ts new file mode 100644 index 00000000000..674cfa780cb --- /dev/null +++ b/code/frameworks/nextjs/src/config/babel.ts @@ -0,0 +1,12 @@ +import { TransformOptions } from '@babel/core'; + +export const configureTypescript = async (baseConfig: TransformOptions) => { + // TODO: add a check so we only add this in typescript projects + const isTypescript = true; + + baseConfig.presets ||= []; + + if (isTypescript && !baseConfig.presets.includes('@babel/preset-typescript')) { + baseConfig.presets.push('@babel/preset-typescript'); + } +}; diff --git a/code/frameworks/nextjs/src/imports/webpack.ts b/code/frameworks/nextjs/src/imports/webpack.ts index a251f911ff0..57bc64f67f5 100644 --- a/code/frameworks/nextjs/src/imports/webpack.ts +++ b/code/frameworks/nextjs/src/imports/webpack.ts @@ -3,7 +3,14 @@ import { loadConfig } from 'tsconfig-paths'; import { Configuration as WebpackConfig } from 'webpack'; export const configureImports = (baseConfig: WebpackConfig): void => { - const configLoadResult = loadConfig(); + let configLoadResult; + + try { + configLoadResult = loadConfig(); + } catch (err) { + // possibly not a typescript project, or project is missing baseUrl + return; + } if ( configLoadResult.resultType === 'failed' || @@ -20,6 +27,6 @@ export const configureImports = (baseConfig: WebpackConfig): void => { new TsconfigPathsPlugin({ configFile: configLoadResult.configFileAbsolutePath, extensions: ['.js', '.jsx', '.ts', '.tsx'], - }) + }) as any ); }; diff --git a/code/frameworks/nextjs/src/preset.ts b/code/frameworks/nextjs/src/preset.ts index 2b8ae85d761..f7a191c3a79 100644 --- a/code/frameworks/nextjs/src/preset.ts +++ b/code/frameworks/nextjs/src/preset.ts @@ -11,6 +11,7 @@ import { configureStyledJsxTransforms } from './styledJsx/babel'; import { configureImages } from './images/webpack'; import { configureRuntimeNextjsVersionResolution } from './utils'; import { FrameworkOptions, StorybookConfig } from './types'; +import { configureTypescript } from './config/babel'; export const addons: PresetProperty<'addons', StorybookConfig> = [ dirname(require.resolve(join('@storybook/preset-react-webpack', 'package.json'))), @@ -67,8 +68,15 @@ export const config: StorybookConfig['previewAnnotations'] = (entry = []) => [ require.resolve('@storybook/nextjs/preview.js'), ]; -export const babel = async (config: TransformOptions): Promise => - configureStyledJsxTransforms(config); +// Not even sb init - automigrate - running dev +// You're using a version of Nextjs prior to v10, which is unsupported by this framework. + +export const babel = async (baseConfig: TransformOptions): Promise => { + configureTypescript(baseConfig); + configureStyledJsxTransforms(baseConfig); + + return baseConfig; +}; export const webpackFinal: StorybookConfig['webpackFinal'] = async (baseConfig, options) => { const frameworkOptions = await options.presets.apply('frameworkOptions'); diff --git a/code/frameworks/nextjs/src/styledJsx/babel.ts b/code/frameworks/nextjs/src/styledJsx/babel.ts index e2d5b2fa1a7..5057a6490fc 100644 --- a/code/frameworks/nextjs/src/styledJsx/babel.ts +++ b/code/frameworks/nextjs/src/styledJsx/babel.ts @@ -1,25 +1,9 @@ -import { TransformOptions, loadPartialConfigAsync } from '@babel/core'; +import { TransformOptions } from '@babel/core'; -export const configureStyledJsxTransforms = async ( - config: TransformOptions -): Promise => - (await hasCustomBabelFile()) - ? // the babel loader will pick up the custom - // config file - config - : { - ...config, - plugins: [...(config.plugins ?? []), 'styled-jsx/babel'], - }; +export const configureStyledJsxTransforms = async (baseConfig: TransformOptions) => { + baseConfig.plugins ||= []; -const hasCustomBabelFile = async () => { - const config = await loadPartialConfigAsync({ - // in order to load babel config, we need to give babel a file - // we just choose the project's package.json cuz we know it has - // to be present - // filename is resolved relative to the root (defaulted to process.cwd()) - // https://babeljs.io/docs/en/options#filename - filename: './package.json', - }); - return config?.babelrc || config?.config; + if (!baseConfig.plugins.includes('styled-jsx/babel')) { + baseConfig.plugins.push('styled-jsx/babel'); + } }; diff --git a/code/yarn.lock b/code/yarn.lock index ecae4fa90d1..132a2dfd6b4 100644 --- a/code/yarn.lock +++ b/code/yarn.lock @@ -2093,7 +2093,7 @@ __metadata: languageName: node linkType: hard -"@babel/preset-typescript@npm:^7.12.7, @babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.16.7": +"@babel/preset-typescript@npm:^7.12.7, @babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.16.7, @babel/preset-typescript@npm:^7.18.6": version: 7.18.6 resolution: "@babel/preset-typescript@npm:7.18.6" dependencies: @@ -7925,6 +7925,7 @@ __metadata: version: 0.0.0-use.local resolution: "@storybook/nextjs@workspace:frameworks/nextjs" dependencies: + "@babel/preset-typescript": ^7.18.6 "@storybook/addon-actions": 7.0.0-alpha.38 "@storybook/addons": 7.0.0-alpha.38 "@storybook/builder-webpack5": 7.0.0-alpha.38