chore: Монорепо с общими пакетами

This commit is contained in:
2026-03-04 16:31:57 +03:00
parent 8f2c799235
commit 915c56351b
420 changed files with 13403 additions and 7071 deletions

18
eslint.config.mjs Normal file
View File

@@ -0,0 +1,18 @@
import js from "@eslint/js";
export default [
js.configs.recommended,
{
files: ["**/*.ts", "**/*.tsx"],
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
rules: {
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
},
},
{
ignores: ["**/dist/**", "**/node_modules/**"],
},
];