From 77c5a5bd3ccb96a50d08f82b4cf11d343f8e8ca9 Mon Sep 17 00:00:00 2001 From: brendanjbond Date: Sat, 3 Feb 2024 00:24:37 -0600 Subject: [PATCH] minor change to eslint config --- .eslintrc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 72f5f3bc66..7417481951 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -2,13 +2,13 @@ "parser": "@typescript-eslint/parser", "extends": "formio", "parserOptions": { - "ecmaVersion": 2015, + "ecmaVersion": 2020, "sourceType": "module" }, "plugins": ["@typescript-eslint"], "env": { "browser": true, - "es6": true, + "es2020": true, "node": true, "mocha": true },