Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Commit

Permalink
feat: add options validation (schema-utils)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed Jul 10, 2017
1 parent 5a1c4e8 commit bc52b09
Show file tree
Hide file tree
Showing 4 changed files with 637 additions and 439 deletions.
27 changes: 27 additions & 0 deletions options.json
@@ -0,0 +1,27 @@
{
"type": "object",
"properties": {
"debug": {
"type": "boolean"
},
"compact": {
"type": "boolean"
},
"autoWrap": {
"type": "boolean"
},
"esModules": {
"type": "boolean"
},
"coverageVariable": {
"type": "string"
},
"preserveComments": {
"type": "boolean"
},
"produceSourceMap": {
"type": "boolean"
}
},
"additionalProperties": true
}

0 comments on commit bc52b09

Please sign in to comment.