/* Path map the converter hands to esbuild (cfg.tsconfig). Only compilerOptions.paths is read. It resolves the repo's @/ alias, and swaps next/link for a router-free anchor so the site sections can be bundled outside Next — see .design-sync/shims/next-link.tsx. Use block comments only. The converter strips // comments with a regex that also mangles a "//" JSON key, which makes the whole file unparseable — and the parse failure is silent: the plugin just doesn't load, esbuild falls back to autodiscovering the repo tsconfig, and next/link quietly resolves to the real Next runtime again. */ { "compilerOptions": { "baseUrl": "..", "paths": { "@/*": ["./*"], "next/link": ["./.design-sync/shims/next-link.tsx"] } } }