Merge pull request #3284 from storybooks/storysource-addon-parser-readme

[Addon Storysource] Add a "parser" option to the README
This commit is contained in:
Filipp Riabchun 2018-03-26 13:39:39 +03:00 committed by GitHub
commit a881e517bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,34 @@ module.exports = {
The loader can be customized with the following options:
### parser
The parser that will be parsing your code to AST (based on [prettier](https://github.com/prettier/prettier/tree/master/src/language-js))
Alowed values:
* `javascript` - default
* `typescript`
Usage:
```js
module.exports = {
module: {
rules: [
{
test: /\.stories\.jsx?$/,
loaders: [
{
loader: require.resolve('@storybook/addon-storysource/loader'),
options: { parser: 'typescript' }
}
],
enforce: 'pre',
},
],
},
};
```
### prettierConfig
The prettier configuration that will be used to format the story source in the addon panel.