v2 스캐폴드 추가 (tsconfig 4종, eslint, prettier, vitest)

TypeScript strict + electron-vite + Vitest 환경을 위한 설정 파일 추가.
tsconfig 4종: 베이스/cli/node(main+preload)/web(renderer) 역할 분담.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-09 15:39:01 +09:00
parent 08b5538e49
commit 8e67d25b3b
7 changed files with 82 additions and 0 deletions

9
vitest.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
include: ['src/**/__tests__/**/*.test.ts'],
globals: true,
},
});