mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Merge pull request #3284 from storybooks/storysource-addon-parser-readme
[Addon Storysource] Add a "parser" option to the README
This commit is contained in:
commit
a881e517bf
@ -40,6 +40,34 @@ module.exports = {
|
|||||||
|
|
||||||
The loader can be customized with the following options:
|
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
|
### prettierConfig
|
||||||
|
|
||||||
The prettier configuration that will be used to format the story source in the addon panel.
|
The prettier configuration that will be used to format the story source in the addon panel.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user