Giter Club home page Giter Club logo

Comments (6)

ELigoP avatar ELigoP commented on July 19, 2024 1

My current solution is to use annotations, which works in some (not all) cases, but seems a redundant.

from ts-json-schema-generator.

ELigoP avatar ELigoP commented on July 19, 2024

I tried to read the code to contribute fix but didn't understand where to start.

from ts-json-schema-generator.

se-panfilov avatar se-panfilov commented on July 19, 2024

Honestly, this was my question - how to use pattern for regexp. Would be glad to see this working

from ts-json-schema-generator.

arthurfiorette avatar arthurfiorette commented on July 19, 2024

Thanks for the report. Can you provide a minimal reproducible example that demonstrates the issue?

from ts-json-schema-generator.

ELigoP avatar ELigoP commented on July 19, 2024

mre.sh:

#!/bin/bash

# Create input file
echo 'export type A = `wifi${number}`;' > test_str.ts


# Expected output
cat <<EOF > expected_str.json
{
  "\$ref": "#/definitions/A",
  "\$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "A": {
      "type": "string",
      "pattern": "^wifi[0-9]+$"
    }
  }
}
EOF

# Actual output
# Generate schema using ts-json-schema-generator
npx ts-json-schema-generator --path test_str.ts --out actual_str.json

# Compare actual and expected output
diff -u1 --color expected_str.json actual_str.json

Output:

bash mre.sh
--- expected_str.json	2024-05-28 09:46:21.504403302 +0300
+++ actual_str.json	2024-05-28 09:46:22.776424172 +0300
@@ -5,6 +5,5 @@
     "A": {
-      "type": "string",
-      "pattern": "^wifi[0-9]+$"
+      "type": "string"
     }
   }
-}
+}

from ts-json-schema-generator.

se-panfilov avatar se-panfilov commented on July 19, 2024

@ELigoP Can you show a small example, pls?

from ts-json-schema-generator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.