Files
gsd-framework/vite.config.ts
T
tiennm99 3e61fa2fd4 feat(01-01): create Vite project with TypeScript and Canvas
- 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>
2026-03-10 23:38:14 +07:00

7 lines
162 B
TypeScript

import { defineConfig } from 'vite';
export default defineConfig({
// Base Vite configuration for vanilla TypeScript
// No plugins needed for vanilla TS
});