No description
Find a file
Jan-Peter Dhalle 253db9ea80 Update styling to match jp_focus design system
- Update color palette from cream/beige to white/gray (jp_focus colors)
- Change ink colors to match jp_focus (blue #4A7BA7, red #C74440, etc.)
- Update line/border colors to black #1A1A1A
- Preserve sticky date grouping structure (only color changes)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-14 00:04:56 +01:00
public Initial commit 2026-01-07 16:16:40 +01:00
src Update styling to match jp_focus design system 2026-01-14 00:04:56 +01:00
.gitignore Initial commit 2026-01-07 16:16:40 +01:00
biome.json add message 2026-01-12 19:36:15 +01:00
bun.lock Update welcome message to shadcn dialog and change drafts to double borders 2026-01-13 00:13:05 +01:00
components.json Initial commit 2026-01-07 16:16:40 +01:00
Dockerfile defualt /api 2026-01-08 21:38:51 +01:00
eslint.config.js update 2026-01-08 19:10:50 +01:00
index.html Initial commit 2026-01-07 16:16:40 +01:00
Jenkinsfile bun, pipeline, build fix 2026-01-08 20:46:32 +01:00
nginx.conf nginx.conf fix 2026-01-08 21:03:12 +01:00
package-lock.json update 2026-01-08 19:20:35 +01:00
package.json Update welcome message to shadcn dialog and change drafts to double borders 2026-01-13 00:13:05 +01:00
README.md Initial commit 2026-01-07 16:16:40 +01:00
tsconfig.app.json bun, pipeline, build fix 2026-01-08 20:46:32 +01:00
tsconfig.json update 2026-01-08 19:10:50 +01:00
tsconfig.node.json bun, pipeline, build fix 2026-01-08 20:46:32 +01:00
vite.config.ts defualt /api 2026-01-08 21:38:51 +01: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...
    },
  },
])