lib-tools
Version:
The lib-tools helps you simplify the build, bundle, test and npm packaging workflows for Typescript, JavaScript, Angular library projects and assets module projects.
13 lines (12 loc) • 419 B
TypeScript
import { TestConfig } from './test-config';
import { PackageJsonLike } from './package-jon-like';
export interface TestConfigInternal extends TestConfig {
_workspaceRoot: string;
_config: 'auto' | string;
_projectName: string;
_projectRoot: string;
_packageJson: PackageJsonLike | null;
_testIndexFilePath: string | null;
_tsConfigPath: string | null;
_karmaConfigPath: string | null;
}