From 8cbabb5873fa9c157c5774320fadd71575a26ae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Maisse?= Date: Thu, 8 Aug 2019 20:46:24 +0200 Subject: [PATCH] chore: add tsconfig in `storyshots-puppeteer` --- .../storyshots/storyshots-puppeteer/tsconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 addons/storyshots/storyshots-puppeteer/tsconfig.json diff --git a/addons/storyshots/storyshots-puppeteer/tsconfig.json b/addons/storyshots/storyshots-puppeteer/tsconfig.json new file mode 100644 index 00000000000..f1a4176b528 --- /dev/null +++ b/addons/storyshots/storyshots-puppeteer/tsconfig.json @@ -0,0 +1,13 @@ +{ + "extends": "../../../tsconfig.json", + "compilerOptions": { + "rootDir": "./src", + "types": ["webpack-env"] + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "src/__tests__/**/*" + ] +}