mirror of
				https://github.com/Xahau/xahau.js.git
				synced 2025-11-04 04:55:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			386 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			386 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  extension: ['.js', '.ts'],
 | 
						|
 | 
						|
  exclude: [
 | 
						|
    '**/*.d.ts',
 | 
						|
    '*.js',
 | 
						|
    'test/**/*',
 | 
						|
    'coverage/**/*',
 | 
						|
  ],
 | 
						|
 | 
						|
  // Assert we remain at 100% code coverage
 | 
						|
  'check-coverage': true,
 | 
						|
  'branches': 100,
 | 
						|
  'lines': 100,
 | 
						|
  'functions': 100,
 | 
						|
  'statements': 100,
 | 
						|
 | 
						|
  // Required to get coverage reported on every file, including those that aren't tested
 | 
						|
  all: true,
 | 
						|
}
 |