mirror of
https://github.com/ChiChou/entdb.git
synced 2026-06-10 15:03:55 +02:00
868f871863
- Add dark/light mode toggle with next-themes - Redesign binary detail page with version history sidebar and diff support - Improve keys page with multi-column grid layout - Update navtop styling to match content padding - Replace checkbox with segmented button for "Latest Only" toggle - Upgrade to Next.js 16, React 19, TypeScript 6
45 lines
753 B
JSON
45 lines
753 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"public/data/**",
|
|
"data/**",
|
|
"out/**"
|
|
]
|
|
}
|