13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
|
import PresetTachyBase from 'packages/presets/base/src';
|
||
|
import _ from 'lodash';
|
||
|
|
||
|
export class PluginRental extends PresetTachyBase {
|
||
|
#builtInPlugins = ['approval-mobile', 'core', 'rental', 'mobile-client'];
|
||
|
|
||
|
get builtInPlugins() {
|
||
|
return super.builtInPlugins.concat(this.#builtInPlugins);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default PresetTachyBase;
|