mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2026-07-07 08:41:06 +08:00
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
export default (api) => {
|
|
api.describe({
|
|
key: 'outputPath',
|
|
config: {
|
|
default: 'dist',
|
|
schema(joi) {
|
|
return joi.string().not('src', 'public', 'pages', 'mock', 'config').allow('');
|
|
},
|
|
},
|
|
});
|
|
};
|