11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
|
|
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,
|
||
|
|
},
|
||
|
|
});
|