15 lines
		
	
	
		
			276 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			276 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { defineBuildConfig } from 'unbuild';
 | |
| 
 | |
| export default defineBuildConfig({
 | |
|   clean: true,
 | |
|   declaration: true,
 | |
|   entries: [
 | |
|     'src/store',
 | |
|     'src/constants/index',
 | |
|     'src/utils/index',
 | |
|     'src/color/index',
 | |
|     'src/cache/index',
 | |
|     'src/global-state',
 | |
|   ],
 | |
| });
 |