From 82f298ccc0231a6d8cf9e91ecea4e6f6f0568dc5 Mon Sep 17 00:00:00 2001 From: baldo Date: Thu, 25 Aug 2022 22:45:38 +0200 Subject: [PATCH] ESLint: Allow NodeJS global. --- frontend/.eslintrc.cjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/.eslintrc.cjs b/frontend/.eslintrc.cjs index 44cff0f..b2cccbc 100644 --- a/frontend/.eslintrc.cjs +++ b/frontend/.eslintrc.cjs @@ -13,4 +13,7 @@ module.exports = { env: { "vue/setup-compiler-macros": true, }, + globals: { + NodeJS: true, + }, };