Files
TypeScript-Backend-Template/eslint.config.mjs

9 lines
186 B
JavaScript
Raw Normal View History

2024-12-10 20:57:52 +05:30
// @ts-check
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
export default tseslint.config(
eslint.configs.recommended,
tseslint.configs.recommended,
);