Files
orrisroot 03d003bfc1 feat: merge the portal and the XooNIps site into one Vite app
bmi.neuroinf.jp was two Create React App projects: bmi-front at the
document root and bmi-researchers under /researchers. Serve both from a
single Vite 8, React 19 and Biome app, with the data moved out of the
bundle into static-contents/.

- load only the half of the site the URL belongs to, since the two
  themes style the same selectors
- base the /researchers half on the visiome v2 database and credits
  code, with its data under /researchers/modules/
- port the portal pages to function components and replace
  react-overlays with a small portal-based modal
- restate content-box theme sizes as border-box totals and the h1/hr
  values normalize.css used to override
- redirect the XooNIps download and v1 file URLs to the new layout
- track page views with GA4
2026-09-14 14:52:59 +09:00

30 lines
903 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"module": "ESNext",
"types": ["vite/client"],
"allowArbitraryExtensions": true,
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
/* SortConditionOrderDir is an enum, which erasable syntax forbids. */
"erasableSyntaxOnly": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}