UNPKG

@ts-dev-tools/core

Version:
5 lines (4 loc) 494 B
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;