From ba97fcf81e1491e9b59eba94ffa5ae938e2b4acc Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Fri, 22 Jan 2021 08:42:35 -0500 Subject: [PATCH] Resolve error with eslint config (#225) Fixes ```text Parsing error: "parserOptions.project" has been set for @typescript-eslint/parser. The file does not match your project config: jest.config.js. The file must be included in at least one of the projects provided. ``` --- .eslintignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintignore b/.eslintignore index 2186947..42ceb9a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,3 +1,4 @@ dist/ lib/ -node_modules/ \ No newline at end of file +node_modules/ +jest.config.js