chore: prepare official supabase self-host setup

This commit is contained in:
Philipp
2026-06-09 21:48:31 +02:00
parent 310573e3ea
commit 206dc48403
7 changed files with 93 additions and 10 deletions
+22
View File
@@ -0,0 +1,22 @@
import js from "@eslint/js";
import tseslint from "typescript-eslint";
export default tseslint.config(
{
ignores: ["dist/**", "node_modules/**"]
},
js.configs.recommended,
...tseslint.configs.recommended,
{
files: ["src/**/*.{ts,tsx}", "*.ts"],
languageOptions: {
ecmaVersion: 2022,
sourceType: "module",
globals: {
document: "readonly",
console: "readonly",
window: "readonly"
}
}
}
);