租房小程序前端代码
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.

27 lines
696 B

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