File tree Expand file tree Collapse file tree 4 files changed +20
-16
lines changed
extensions/ql-vscode/.storybook Expand file tree Collapse file tree 4 files changed +20
-16
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import type { StorybookConfig } from '@storybook/core-common' ;
2+
3+ const config : StorybookConfig = {
4+ stories : [
5+ '../src/**/*.stories.mdx' ,
6+ '../src/**/*.stories.@(js|jsx|ts|tsx)'
7+ ] ,
8+ addons : [
9+ '@storybook/addon-links' ,
10+ '@storybook/addon-essentials' ,
11+ '@storybook/addon-interactions'
12+ ] ,
13+ framework : '@storybook/react' ,
14+ core : {
15+ builder : '@storybook/builder-webpack5'
16+ }
17+ } ;
18+
19+ module . exports = config ;
File renamed without changes.
Original file line number Diff line number Diff line change @@ -32,6 +32,6 @@ export const parameters = {
3232 }
3333} ;
3434
35- window . acquireVsCodeApi = ( ) => ( {
35+ ( window as any ) . acquireVsCodeApi = ( ) => ( {
3636 postMessage : action ( 'post-vscode-message' )
3737} ) ;
You can’t perform that action at this time.
0 commit comments