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.
27 lines
401 B
27 lines
401 B
2 years ago
|
'use strict';
|
||
|
|
||
|
var config = {
|
||
|
cwd: {
|
||
|
type: 'string',
|
||
|
default: process.cwd,
|
||
|
},
|
||
|
dirMode: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
overwrite: {
|
||
|
type: 'boolean',
|
||
|
default: true,
|
||
|
},
|
||
|
relativeSymlinks: {
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
},
|
||
|
// This option is ignored on non-Windows platforms
|
||
|
useJunctions: {
|
||
|
type: 'boolean',
|
||
|
default: true,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|