10 lines
265 B
JavaScript
10 lines
265 B
JavaScript
|
import globals from "globals";
|
||
|
import tseslint from "typescript-eslint";
|
||
|
|
||
|
|
||
|
/** @type {import('eslint').Linter.Config[]} */
|
||
|
export default [
|
||
|
{files: ["**/*.{js,mjs,cjs,ts}"]},
|
||
|
{languageOptions: { globals: globals.browser }},
|
||
|
...tseslint.configs.recommended,
|
||
|
];
|