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.

18 lines
923 B

  1. -record(config, {
  2. dirty_strings = false :: boolean(),
  3. escaped_forward_slashes = false :: boolean(),
  4. escaped_strings = false :: boolean(),
  5. multi_term = false :: boolean(),
  6. strict_comments = false :: boolean(),
  7. strict_commas = false :: boolean(),
  8. strict_utf8 = false :: boolean(),
  9. strict_single_quotes = false :: boolean(),
  10. strict_escapes = false :: boolean(),
  11. strict_control_codes = false :: boolean(),
  12. stream = false :: boolean(),
  13. return_tail = false :: boolean(),
  14. uescape = false :: boolean(),
  15. unescaped_jsonp = false :: boolean(),
  16. error_handler = false :: false | jsx_config:handler(),
  17. incomplete_handler = false :: false | jsx_config:handler()
  18. }).