From 5325625d65c15e2898ae95c2cd61b1fd9de6b74c Mon Sep 17 00:00:00 2001 From: Daniel Van Der Ploeg Date: Mon, 20 May 2024 16:47:27 +0930 Subject: [PATCH] fix: set eslint to use node env, not browser --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 11d670a0..c81e456f 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,6 +1,6 @@ { "env": { - "browser": true, + "node": true, "commonjs": true, "es2021": true },