storybook/lib/components/tsconfig.json
Gaëtan Maisse 30355562b2 chore: fix cyclic dependency in devDependencies of @storybook/components
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
2019-04-16 13:44:31 +02:00

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.*"
]
}