11 lines
244 B
TypeScript
Executable File
11 lines
244 B
TypeScript
Executable File
import tseslint from 'typescript-eslint';
|
|
import globals from 'globals';
|
|
import { baseConfig } from './base.js';
|
|
|
|
export const nodeConfig = tseslint.config(baseConfig, {
|
|
languageOptions: {
|
|
ecmaVersion: 2024,
|
|
globals: globals.node,
|
|
},
|
|
});
|