mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect-embeded.git
synced 2025-06-24 13:34:13 +08:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import { defineBuildConfig } from 'unbuild';
|
|
|
|
export default defineBuildConfig({
|
|
clean: true,
|
|
entries: ['src/index', 'src/strict'],
|
|
declaration: true,
|
|
rollup: {
|
|
emitCJS: true,
|
|
},
|
|
});
|