mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-06-22 02:14:04 +00:00
10 lines
361 B
TypeScript
10 lines
361 B
TypeScript
import { defineConfig } from 'eslint/config';
|
|
import { getBaseConfig, getTSVueConfig, getNodeFiles } from '@jellyfin-vue/configs/lint';
|
|
import pkg from './package.json' with { type: 'json' };
|
|
|
|
export default defineConfig([
|
|
...getBaseConfig(pkg.name),
|
|
...getTSVueConfig(pkg.name, false, import.meta.dirname),
|
|
...getNodeFiles(pkg.name, ['src/vite.ts'])
|
|
]);
|