You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
674 B
42 lines
674 B
2 years ago
|
'use strict';
|
||
|
|
||
|
var config = {
|
||
|
cwd: {
|
||
|
type: 'string',
|
||
|
default: process.cwd,
|
||
|
},
|
||
|
mode: {
|
||
|
type: 'number',
|
||
|
default: function(file) {
|
||
|
return file.stat ? file.stat.mode : null;
|
||
|
},
|
||
|
},
|
||
|
dirMode: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
overwrite: {
|
||
|
type: 'boolean',
|
||
|
default: true,
|
||
|
},
|
||
|
append: {
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
},
|
||
|
sourcemaps: {
|
||
|
type: ['string', 'boolean'],
|
||
|
default: false,
|
||
|
},
|
||
|
// Symlink options
|
||
|
relativeSymlinks: {
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
},
|
||
|
// This option is ignored on non-Windows platforms
|
||
|
useJunctions: {
|
||
|
type: 'boolean',
|
||
|
default: true,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|