File size: 281 Bytes
6b3405c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import globals from "globals";
import pluginJs from "@eslint/js";
import pluginTs from "typescript-eslint";

export default [
  { ignores: ["client/dist"] },
  { languageOptions: { globals: globals.browser } },
  pluginJs.configs.recommended,
  ...pluginTs.configs.recommended,
];