版博士V2.0程序
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627
  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. };