Files
chatrooms/server/eslint.config.ts
Alexander Zinn 705274c4ba updates
2025-08-25 13:36:17 -04:00

10 lines
343 B
TypeScript

import js from '@eslint/js';
import globals from 'globals';
import tseslint from 'typescript-eslint';
import {defineConfig} from 'eslint/config';
export default defineConfig([
{files: ['**/*.{js,mjs,cjs,ts,mts,cts}'], plugins: {js}, extends: ['js/recommended'], languageOptions: {globals: globals.node}},
tseslint.configs.recommended
]);