feature flags
This commit is contained in:
19
vitest.contracts.config.ts
Normal file
19
vitest.contracts.config.ts
Normal 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'),
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user