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.
lib/src/service/Config.ts

10 lines
298 B

import {Singleton} from "@extollo/di";
import {CanonicalRecursive} from "./CanonicalRecursive";
@Singleton()
export class Config extends CanonicalRecursive {
protected appPath: string[] = ['configs']
protected suffix: string = '.config.js'
protected canonicalItem: string = 'config'
}