chore: scaffold Vite + Svelte 5 + TS project with chess.js and vitest

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
claude (duplicate_chess)
2026-05-19 00:40:03 -04:00
parent 61980f043f
commit bd24159f37
18 changed files with 2109 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
})