@oletizi/audio-tools
Version:
Monorepo for hardware sampler utilities and format parsers
20 lines (18 loc) • 433 B
text/typescript
import { defineConfig } from 'vite';
import { resolve } from 'path';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['test/integration/**/*.test.ts'],
exclude: ['node_modules/**', 'dist/**', 'test/unit/**'],
testTimeout: 5000,
hookTimeout: 3000
},
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
'tests': resolve(__dirname, 'test')
}
}
});