JsonModulesPluginParser.json 464 B

12345678910111213141516
  1. {
  2. "title": "JsonModulesPluginParserOptions",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "properties": {
  6. "exportsDepth": {
  7. "description": "The depth of json dependency flagged as `exportInfo`.",
  8. "type": "number"
  9. },
  10. "parse": {
  11. "description": "Function that executes for a module source string and should return json-compatible data.",
  12. "instanceof": "Function",
  13. "tsType": "((input: string) => any)"
  14. }
  15. }
  16. }