Sha256: 5e86a6530b827e152ec575a75c82fca6336536d9b94a965991d1f10ac41fd1da
Contents?: true
Size: 800 Bytes
Versions: 46
Compression:
Stored size: 800 Bytes
Contents
/** * @fileoverview The list of feature flags supported by the parser and their default * settings. * @author Nicholas C. Zakas */ "use strict"; //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ // None! //------------------------------------------------------------------------------ // Public //------------------------------------------------------------------------------ module.exports = { // React JSX parsing jsx: false, // allow return statement in global scope globalReturn: false, // allow implied strict mode impliedStrict: false, // allow experimental object rest/spread experimentalObjectRestSpread: false };
Version data entries
46 entries across 46 versions & 3 rubygems