mirror of
				https://github.com/Tencent/tmagic-editor.git
				synced 2025-11-04 02:28:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			218 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			218 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineConfig } from 'vite';
 | 
						|
 | 
						|
export default defineConfig({
 | 
						|
  build: {
 | 
						|
    sourcemap: true,
 | 
						|
 | 
						|
    lib: {
 | 
						|
      entry: 'src/index.ts',
 | 
						|
      name: 'TMagicSchema',
 | 
						|
      fileName: 'tmagic-schema',
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 |