项目原始demo,不改动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

33 line
800 B

  1. /**
  2. * @fileoverview The list of feature flags supported by the parser and their default
  3. * settings.
  4. * @author Nicholas C. Zakas
  5. */
  6. "use strict";
  7. //------------------------------------------------------------------------------
  8. // Requirements
  9. //------------------------------------------------------------------------------
  10. // None!
  11. //------------------------------------------------------------------------------
  12. // Public
  13. //------------------------------------------------------------------------------
  14. module.exports = {
  15. // React JSX parsing
  16. jsx: false,
  17. // allow return statement in global scope
  18. globalReturn: false,
  19. // allow implied strict mode
  20. impliedStrict: false,
  21. // allow experimental object rest/spread
  22. experimentalObjectRestSpread: false
  23. };