Add config schema for version pinned packages

This commit is contained in:
Lee Dohm
2017-05-15 11:18:22 -07:00
parent 7a56c4c8b4
commit 6740952c1c

View File

@@ -34,6 +34,16 @@ const configSchema = {
description: 'List of names of installed packages which are not loaded at startup.'
},
versionPinnedPackages: {
type: 'array',
default: [],
items: {
type: 'string'
},
description: 'List of names of installed packages which are not automatically updated.'
},
customFileTypes: {
type: 'object',
default: {},