mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-06-09 19:20:34 +00:00
10 lines
342 B
TypeScript
10 lines
342 B
TypeScript
import { defineConfig } from 'eslint/config';
|
|
import { getBaseConfig, getTSVueConfig, getNodeFiles, tsFiles } from '@jellyfin-vue/configs/lint';
|
|
import pkg from './package.json' with { type: 'json' };
|
|
|
|
export default defineConfig([
|
|
...getBaseConfig(pkg.name),
|
|
...getTSVueConfig(false, import.meta.dirname),
|
|
...getNodeFiles(tsFiles)
|
|
]);
|