mirror of
				https://github.com/docker/setup-buildx-action.git
				synced 2025-11-04 06:34:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			310 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			310 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  clearMocks: true,
 | 
						|
  moduleFileExtensions: ['js', 'ts'],
 | 
						|
  setupFiles: ['dotenv/config'],
 | 
						|
  testMatch: ['**/*.test.ts'],
 | 
						|
  transform: {
 | 
						|
    '^.+\\.ts$': 'ts-jest'
 | 
						|
  },
 | 
						|
  moduleNameMapper: {
 | 
						|
    '^csv-parse/sync': '<rootDir>/node_modules/csv-parse/dist/cjs/sync.cjs'
 | 
						|
  },
 | 
						|
  verbose: true
 | 
						|
};
 |