From 5bb684ded207c837c6d8eee8412aeba218730613 Mon Sep 17 00:00:00 2001 From: "Simen A. W. Olsen" Date: Thu, 13 Jul 2023 23:37:57 +0200 Subject: [PATCH] chore: add parser options to eslint --- .eslintrc.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 83278c9..1c50c7c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,3 +1,7 @@ module.exports = { extends: '@bjerk/eslint-config', + parserOptions: { + project: true, + tsconfigRootDir: __dirname, + }, };