@ts-dev-tools/core
Version:
TS dev tools Core
5 lines (4 loc) • 494 B
TypeScript
import type { MigrationUpFunction } from "../../services/MigrationsService";
export declare const VITEST_CONFIG_FILE_NAME = "vitest.config.ts";
export declare const MANAGED_CORE_VITEST_CONFIG = "import { defineConfig } from \"vitest/config\";\n\nexport default defineConfig({\n test: {\n coverage: {\n include: [\"src/**/*.{ts,tsx,js,jsx}\"],\n provider: \"v8\",\n },\n environment: \"node\",\n globals: true,\n },\n});\n";
export declare const up: MigrationUpFunction;