This commit is contained in:
2024-10-29 17:58:39 +05:30
commit 0cc048bff2
7 changed files with 3197 additions and 0 deletions

11
eslint.config.mjs Normal file
View File

@@ -0,0 +1,11 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
export default [
{files: ["**/*.{ts}"]},
{languageOptions: { globals: globals.browser }},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
];