We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
some hepler function import from tslib
the hepler function declaration in packaging product
import { getBabelOutputPlugin } from '@rollup/plugin-babel' import commonjs from '@rollup/plugin-commonjs' import resolve from '@rollup/plugin-node-resolve' import typescript from '@rollup/plugin-typescript' import dts from 'rollup-plugin-dts' export default [ { input: './index.ts', output: [ { file: './dist/utils.js', format: 'es', }, ], plugins: [ resolve(), commonjs(), typescript(), getBabelOutputPlugin({ presets: [ [ '@babel/preset-env', { modules: false, useBuiltIns: 'usage', corejs: '3.34.0', }, ], ], plugins: ['@babel/plugin-transform-runtime'], }), ], }, { input: './index.ts', output: [ { file: './dist/utils.d.ts', format: 'es', }, ], plugins: [dts()], }, ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
some hepler function import from tslib
Actual Behavior
the hepler function declaration in packaging product
Additional Information
The text was updated successfully, but these errors were encountered: