intial changes

This commit is contained in:
Uday Girhepunje 2024-06-18 12:03:08 +05:30
commit e1a4287f91
17 changed files with 2871 additions and 12322 deletions

10
eslint.config.mjs Normal file
View file

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