|
|
|
@ -29,7 +29,8 @@ export default [
@@ -29,7 +29,8 @@ export default [
|
|
|
|
|
{ |
|
|
|
|
input: "src/index.ts", |
|
|
|
|
plugins: [ |
|
|
|
|
typescript(), |
|
|
|
|
typescript({ tsconfig: "./tsconfig.json", declarationDir: "./" }), |
|
|
|
|
|
|
|
|
|
commonjs(), |
|
|
|
|
babel(babelOptions), |
|
|
|
|
terser(terserOptions), |
|
|
|
@ -53,7 +54,11 @@ export default [
@@ -53,7 +54,11 @@ export default [
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
input: "src/index.ts", |
|
|
|
|
plugins: [typescript(), commonjs()], |
|
|
|
|
plugins: [ |
|
|
|
|
typescript({ tsconfig: "./tsconfig.json", declarationDir: "./" }), |
|
|
|
|
|
|
|
|
|
commonjs(), |
|
|
|
|
], |
|
|
|
|
output: { |
|
|
|
|
file: "dist/index.dev.js", |
|
|
|
|
format: "iife", |
|
|
|
@ -62,7 +67,9 @@ export default [
@@ -62,7 +67,9 @@ export default [
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
input: "src/index.ts", |
|
|
|
|
plugins: [typescript()], |
|
|
|
|
plugins: [ |
|
|
|
|
typescript({ tsconfig: "./tsconfig.json", declarationDir: "./" }), |
|
|
|
|
], |
|
|
|
|
output: { |
|
|
|
|
file: "dist/index.esm.js", |
|
|
|
|
format: "esm", |
|
|
|
|