๐Ÿ“ฆ ljharb / eslint-config

๐Ÿ“„ 24.mjs ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13import baseConfig from './22.mjs';
import config from '../../node/24.json' with { type: 'json' };

export default /** @type {import('./24.d.mts').default} */ ([
	...baseConfig,
	{
		languageOptions: {
			ecmaVersion: config.parserOptions.ecmaVersion,
			globals: config.globals,
		},
	},
]);