docs(CLAUDE.md): add code style section aligned with glyphdiff conventions

This commit is contained in:
Ilia Mashkov
2026-03-06 23:03:45 +03:00
commit e2eba5ec55
44 changed files with 3686 additions and 0 deletions

12
vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import path from "node:path";
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [sveltekit()],
resolve: {
alias: {
$lib: path.resolve("./src/lib"),
},
},
});