Update Addons-Storysource README.md

Updates the README to explain that changing the parser to Typescript will require updating the Regex test in the custom webpack rule to `tsx` as apposed to `jsx`.
This commit is contained in:
Lucas Burdell 2019-10-02 09:44:05 -05:00 committed by GitHub
parent b3fd10b67f
commit f8bb131e67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,12 +48,14 @@ Allowed values:
- `typescript` - `typescript`
- `flow` - `flow`
Be sure to update the regex test for the webpack rule if utilizing Typescript files.
Usage: Usage:
```js ```js
module.exports = function({ config }) { module.exports = function({ config }) {
config.module.rules.push({ config.module.rules.push({
test: /\.stories\.jsx?$/, test: /\.stories\.tsx?$/,
loaders: [ loaders: [
{ {
loader: require.resolve('@storybook/source-loader'), loader: require.resolve('@storybook/source-loader'),