mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
feat(Poppperjs): add esm output
This commit is contained in:
parent
1304c6f36b
commit
5f436fc62f
@ -2,8 +2,12 @@
|
||||
"name": "@vant/popperjs",
|
||||
"version": "1.0.0",
|
||||
"description": "Precompiled popperjs core",
|
||||
"main": "lib/index.js",
|
||||
"main": "dist/cjs/index.js",
|
||||
"module": "dist/esm/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"registry": "https://registry.npmjs.org/"
|
||||
|
@ -4,9 +4,15 @@ import nodeResolve from '@rollup/plugin-node-resolve';
|
||||
|
||||
export default {
|
||||
input: path.join(__dirname, 'src', 'index.ts'),
|
||||
output: {
|
||||
dir: 'lib',
|
||||
format: 'cjs',
|
||||
},
|
||||
output: [
|
||||
{
|
||||
dir: 'dist/cjs',
|
||||
format: 'cjs',
|
||||
},
|
||||
{
|
||||
dir: 'dist/esm',
|
||||
format: 'esm',
|
||||
},
|
||||
],
|
||||
plugins: [nodeResolve(), babel({ babelHelpers: 'runtime' })],
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"outDir": "./lib",
|
||||
"outDir": "./dist",
|
||||
"module": "ES2015",
|
||||
"strict": true,
|
||||
"declaration": true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user