snp-batch-validation/frontend
HYOJIN 5f7708962d feat(screening): Risk & Compliance 다국어 지원 및 사용자 편의성 개선 (#134)
- UI 고정 텍스트 다국어 메타 파일(screeningTexts.ts) 추가
- -999/null 값 'No Data'/'데이터 없음' 표시 처리
- Screening Guide 탭 분리 (Ship/Company Compliance)
- Change History ↔ Screening Guide 간 언어 설정 공유
- 섹션 헤더에 Screening Guide 연결 링크 추가
2026-04-02 11:14:00 +09:00
..
public feat: favicon 변경 (#105) 2026-03-26 14:20:09 +09:00
src feat(screening): Risk & Compliance 다국어 지원 및 사용자 편의성 개선 (#134) 2026-04-02 11:14:00 +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: 프론트엔드 UI 개편 - 메인 화면 및 섹션별 네비게이션 (#115) 2026-03-31 11:02:27 +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...
    },
  },
])