0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-02-23 06:56:20 +00:00
Fernando Fernández 945356d505 feat: create tauri-runtime package
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
2025-01-25 00:06:49 +01:00

10 lines
346 B
TypeScript

import type { Linter } from 'eslint';
import { getBaseConfig, getNodeFiles, getTSVueConfig, tsFiles } from '@jellyfin-vue/configs/lint';
import pkg from './package.json' with { type: 'json' };
export default [
...getBaseConfig(pkg.name),
...getTSVueConfig(false, import.meta.dirname),
...getNodeFiles(tsFiles)
] satisfies Linter.Config[];