filer/src/webpack-plugin/schema.js

27 lines
489 B
JavaScript
Raw Normal View History

2021-04-04 00:22:28 +00:00
module.exports = {
type: 'object',
properties: {
filerDir: {
type: 'string',
},
shimsDir: {
type: 'string',
},
shimFs: {
type: 'boolean',
},
shimPath: {
type: 'boolean',
},
shimBuffer: {
type: 'boolean',
},
fsProvider: {
type: 'string',
},
fsProviderDir: {
type: 'string',
},
}
};