Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
304 B
JavaScript
17 lines
304 B
JavaScript
/**
|
|
* @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,
|
|
};
|