UNPKG

@tsed/cli-core

Version:
18 lines (17 loc) 478 B
import { __decorate, __metadata } from "tslib"; import { DIConfiguration, Injectable } from "@tsed/di"; let CliConfiguration = class CliConfiguration extends DIConfiguration { constructor() { super({ project: { root: process.cwd(), srcDir: "src" } }); } }; CliConfiguration = __decorate([ Injectable(), __metadata("design:paramtypes", []) ], CliConfiguration); export { CliConfiguration };