rslib.config.ts 295 B

123456789101112131415161718
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { defineConfig } from '@rslib/core';
  6. export default defineConfig({
  7. lib: [
  8. {
  9. dts: {
  10. bundle: true,
  11. },
  12. format: 'esm',
  13. syntax: 'esnext',
  14. },
  15. ],
  16. });