snp-batch-validation/frontend
HYOJIN 9667d3a0ac feat: 중첩 JSON 구조 파싱 대응 및 DTO import 버그 수정 (#63)
백엔드:
- generateDtoCode에서 List/Map 타입 import 자동 추가
- JsonSchemaParser에 targetField 파라미터 추가 (특정 필드 내부만 파싱)
- 배열 내 객체 감지 시 List<{FieldName}Item> 타입으로 추론

프론트엔드:
- JSON 샘플 파싱 시 "전체 JSON / 특정 필드 내부" 선택 옵션 추가
- targetField 기본값 "data" (페이징 래퍼 대응)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 09:39:23 +09:00
..
public feat: favicon 변경 (#105) 2026-03-26 14:20:09 +09:00
src feat: 중첩 JSON 구조 파싱 대응 및 DTO import 버그 수정 (#63) 2026-03-27 09:39:23 +09:00
.gitignore feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
eslint.config.js feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
index.html feat: favicon 변경 (#105) 2026-03-26 14:20:09 +09:00
package-lock.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
package.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
README.md feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.app.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.node.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
vite.config.ts feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])