summaryrefslogtreecommitdiff
path: root/scripts/changelog-checker/eslint.config.js
blob: 813e96981ace311fa335394644e1531ec3df070d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import tsParser from '@typescript-eslint/parser';
import sharedConfig from '../../packages/shared/eslint.config.js';

export default [
	...sharedConfig,
	{
		files: ['src/**/*.ts', 'src/**/*.tsx'],
		languageOptions: {
			parserOptions: {
				parser: tsParser,
				project: ['./tsconfig.json'],
				sourceType: 'module',
				tsconfigRootDir: import.meta.dirname,
			},
		},
	},
];