From 7fe72833d2929a510e8231194a1fda8b29506079 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Sun, 7 Mar 2021 10:00:52 +1300 Subject: [PATCH] build: ignore files in `__test__` --- babel.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/babel.config.js b/babel.config.js index 9da6d0228..d59293b58 100644 --- a/babel.config.js +++ b/babel.config.js @@ -7,4 +7,5 @@ module.exports = { '@babel/preset-typescript', ['@babel/preset-env', { targets: { node: 10 } }], ], + ignore: ['src/**/__tests__/**'], };