From 665928431f9046bea3e857c0d515d5bdedb379c8 Mon Sep 17 00:00:00 2001 From: Dmitry Balashov Date: Mon, 13 Mar 2023 12:11:17 +0700 Subject: [PATCH] [chore]: ignore stories in `tsconfig.json` --- tsconfig.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 0d8e84ec..d551bf64 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ // "noImplicitReturns": true, "noPropertyAccessFromIndexSignature": false, // "noUncheckedIndexedAccess": true, - "noUnusedLocals": false, + "noUnusedLocals": false, // "noUnusedParameters": true, // TODO set to true @@ -28,5 +28,11 @@ "resolveJsonModule": true, "lib": ["esnext", "dom"] }, - "exclude": ["**/dist", "**/ts-build", "**/storybook-static"] + "exclude": [ + "**/dist", + "**/ts-build", + "**/storybook-static", + // https://github.com/soramitsu/soramitsu-js-ui-library/issues/514 + "./packages/ui/stories" + ] }