@laboratoria/sdk-js 5.3.2 → 6.0.0-beta.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,28 +0,0 @@
1
- import path from 'path';
2
-
3
- export default [
4
- {
5
- entry: './index.js',
6
- output: {
7
- path: path.resolve('./dist'),
8
- filename: 'laboratoria-sdk-umd.js',
9
- library: {
10
- name: 'laboratoria',
11
- type: 'umd',
12
- },
13
- },
14
- },
15
- {
16
- entry: './index.js',
17
- experiments: {
18
- outputModule: true,
19
- },
20
- output: {
21
- path: path.resolve('./dist'),
22
- filename: 'laboratoria-sdk-esm.js',
23
- library: {
24
- type: 'module',
25
- },
26
- },
27
- }
28
- ];