Files
memecoin-botV2/.pnpm-store/v10/files/3a/c58000cc0c1b2064766135512fc763befb3c924bbbcef79592f2d0f7e1077ddf666a552dba08c50768028267711146e236f13ad47b1091bd6a49bdee2eb039

17 lines
304 B
Plaintext

/**
* @fileoverview Configuration related to ECMAScript versions
* @author Milos Djermanovic
*/
"use strict";
/**
* The latest ECMAScript version supported by ESLint.
* @type {number} year-based ECMAScript version
*/
const LATEST_ECMA_VERSION = 2026;
module.exports = {
LATEST_ECMA_VERSION,
};