import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Internal packages ship TypeScript source (no dist build). Transpile // @pyre/core so the Next/Turbopack production build can resolve its runtime // exports (e.g. the `TokenClassification` enum) and the `.js`-specified // re-exports in its barrel. transpilePackages: ["@pyre/core"], }; export default nextConfig;