You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
Adding a test that checks if the resulting tsconfig.json matches the corresponding schema seems to be harder than expected.
I played a bit with https://ajv.js.org but I do not understand the concept of Schema and MetaSchema.
If you run the validator I get the error described here: ajv-validator/ajv#472
JSON-Schemas build up a hierarchy.
A schema validator validates the whole hierarchy.
If one of the schemas is not available an error is thrown.
Since we only need to validate the properties of tsconfig.json.
I decided to ignore the parent schema of tsconfig.json for now.
"strict": true
"noUnusedParameters": true
"noUnusedLocals": true
"noImplicitAny": true
tsconfig.json
accordinglyThe text was updated successfully, but these errors were encountered: