mirror of
https://github.com/tiennm99/gsd-framework.git
synced 2026-05-26 20:00:07 +00:00
3e61fa2fd4
- Initialize Vite project with vanilla-ts configuration - Add TypeScript with strict mode enabled - Configure Vitest for testing - Create index.html with Canvas element - Add main.ts entry point with canvas setup - Add setup tests for project dependencies Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
// Base Vite configuration for vanilla TypeScript
|
|
// No plugins needed for vanilla TS
|
|
});
|