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