diff --git a/.dist.eslintrc b/.dist.eslintrc index 17a974bf5..6fbc43fd1 100644 --- a/.dist.eslintrc +++ b/.dist.eslintrc @@ -8,14 +8,7 @@ }, "plugins": ["compat"], "rules": { - "node/no-unsupported-features/es-builtins": ["error", { - "version": ">=8.0.0", - "ignores": [ - "Atomics", - "BigInt", - "SharedArrayBuffer" - ] - }], + "node/no-unsupported-features/es-builtins": "off", "compat/compat": "error", "no-console": "off", "no-empty": "off", diff --git a/.lib.eslintrc b/.lib.eslintrc index 0a5b29529..5915045fb 100644 --- a/.lib.eslintrc +++ b/.lib.eslintrc @@ -4,6 +4,11 @@ "browser": true }, "rules": { + "node/no-unsupported-features/es-builtins": ["error", { + "version": ">=6.4.0", + "ignores": [ + ] + }], "node/no-deprecated-api": "off", "no-console": "off", "no-unused-vars": "off",