UNPKG

@oxlint/migrate

Version:

Generates a `.oxlintrc.json` from a existing eslint flat config

17 lines (16 loc) 276 B
import { glob } from "tinyglobby"; const getAllProjectFiles = () => { return glob( [ "**/*.{js,cjs,mjs,ts,cts,mts,vue,astro,svelte}", "!**/node_modules/**", "!**/dist/**" ], { absolute: true } ); }; export { getAllProjectFiles };