YousefED / typescript-json-schema

Generate json-schema from your Typescript sources
BSD 3-Clause "New" or "Revised" License
3.17k stars 323 forks source link

RegExp special characters are not escaped for string template literals #602

Closed ahochsteger closed 6 months ago

ahochsteger commented 6 months ago

A string template literal like ${string}.${string} currently produces a string pattern of "^.*..*$" in the resulting JSON schema while the correct pattern would be "^.*\\..*$".