feature flags

This commit is contained in:
2026-01-07 22:05:53 +01:00
parent 1b63fa646c
commit 606b64cec7
530 changed files with 2092 additions and 2943 deletions

View File

@@ -0,0 +1,19 @@
import { defineConfig } from 'vitest/config';
import * as path from 'path';
export default defineConfig({
test: {
globals: true,
watch: false,
environment: 'node',
include: ['tests/contracts/**/*.{test,spec}.ts'],
exclude: ['node_modules/**', '**/dist/**', '**/.next/**'],
},
resolve: {
alias: {
'@core': path.resolve(__dirname, './core'),
'@adapters': path.resolve(__dirname, './adapters'),
'@testing': path.resolve(__dirname, './adapters/testing'),
},
},
});