mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 01:41:05 +08:00
Remove `@storybook/react` and `@storybook/addon-actions` from devDependencies of `@storybook/components` to avoid lerna to find cyclic dependency. Also add them to ts-lint no-implicit-dependencies whitelist to avoid tslint error. For more details about this see:https://github.com/storybooks/storybook/issues/6523
19 lines
289 B
JSON
19 lines
289 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"types": [
|
|
"webpack-env",
|
|
"jest",
|
|
"react-syntax-highlighter"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"src/**/__tests__/**/*",
|
|
"src/**/*.stories.*"
|
|
]
|
|
}
|