The gating option enables conditional compilation, allowing you to control when optimized code is used at runtime.
}Reference
Section titled “Reference”gating
Section titled “gating”Configures runtime feature flag gating for compiled functions.
{ source: string; importSpecifierName: string;} | nullDefault value
Section titled “Default value”null
Properties
Section titled “Properties”source: Module path to import the feature flag fromimportSpecifierName: Name of the exported function to import
Caveats
Section titled “Caveats”- The gating function must return a boolean
- Both compiled and original versions increase bundle size
- The import is added to every file with compiled functions
Basic feature flag setup
Section titled “Basic feature flag setup”- Create a feature flag module:
export function shouldUseCompiler() { // your logic here return getFeatureFlag('react-compiler-enabled');}- Configure the compiler:
}- The compiler generates gated code:
// Inputfunction Button(props) { return <button>{props.label}</button>;}
// Output (simplified)import { shouldUseCompiler } from './src/utils/feature-flags';
const Button = shouldUseCompiler() ? function Button_optimized(props) { /* compiled version */ } : function Button_original(props) { /* original version */ };Note that the gating function is evaluated once at module time, so once the JS bundle has been parsed and evaluated the choice of component stays static for the rest of the browser session.
Troubleshooting
Section titled “Troubleshooting”Feature flag not working
Section titled “Feature flag not working”Verify your flag module exports the correct function:
// ❌ Wrong: Default exportexport default function shouldUseCompiler() { return true;}
// ✅ Correct: Named export matching importSpecifierNameexport function shouldUseCompiler() { return true;}Import errors
Section titled “Import errors”Ensure the source path is correct:
// ❌ Wrong: Relative to babel.config.js{ source: './src/flags', importSpecifierName: 'flag'}
// ✅ Correct: Module resolution path{ source: '@myapp/feature-flags', importSpecifierName: 'flag'}
// ✅ Also correct: Absolute path from project root{ source: './src/utils/flags', importSpecifierName: 'flag'}