16 lines
319 B
JavaScript
16 lines
319 B
JavaScript
// @ts-check
|
|
|
|
import eslint from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
import globals from "globals";
|
|
|
|
export default tseslint.config(
|
|
{
|
|
...eslint.configs.recommended,
|
|
languageOptions: {
|
|
globals: globals.browser
|
|
}
|
|
},
|
|
...tseslint.configs.recommended,
|
|
);
|