add absolutePath to records paths

This commit is contained in:
Tim Sebastian 2017-02-02 21:41:29 +11:00
parent 56a26f3847
commit 890db7edc3
1 changed files with 4 additions and 2 deletions

View File

@ -828,11 +828,13 @@
},
"recordsInputPath": {
"description": "Store compiler state to a json file.",
"type": "string"
"type": "string",
"absolutePath": true
},
"recordsOutputPath": {
"description": "Load compiler state from a json file.",
"type": "string"
"type": "string",
"absolutePath": true
},
"recordsPath": {
"description": "Store/Load compiler state from/to a json file. This will result in persistent ids of modules and chunks. An absolute path is expected. `recordsPath` is used for `recordsInputPath` and `recordsOutputPath` if they left undefined.",