mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-03-12 18:07:10 -04:00
11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
passWithNoTests: true,
|
|
include: ['test/**/*.test.ts'],
|
|
coverage: { enabled: true },
|
|
typecheck: { tsconfig: './tsconfig.test.json' },
|
|
},
|
|
});
|