| 123456789101112131415161718 |
- /**
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
- * SPDX-License-Identifier: MIT
- */
- import { defineConfig } from '@rslib/core';
- export default defineConfig({
- lib: [
- {
- dts: {
- bundle: true,
- },
- format: 'esm',
- syntax: 'esnext',
- },
- ],
- });
|