File tree 2 files changed +5
-9
lines changed
2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 8
8
"files" : [
9
9
" ./dist/**/*"
10
10
],
11
- "type " : " module " ,
12
- "main " : " ./dist/ods-charts-module .js" ,
11
+ "main " : " ./dist/ods-charts.js " ,
12
+ "module " : " ./dist/ods-charts.esm .js" ,
13
13
"types" : " ./dist/ods-charts.d.js" ,
14
14
"scripts" : {
15
15
"build" : " webpack" ,
Original file line number Diff line number Diff line change 1
- import path from 'node:path' ;
2
- import { fileURLToPath } from 'node:url' ;
3
-
4
- const __filename = fileURLToPath ( import . meta. url ) ;
5
- const __dirname = path . dirname ( __filename ) ;
1
+ const path = require ( 'path' ) ;
6
2
7
3
const defaultConfig = {
8
4
mode : 'development' ,
@@ -23,7 +19,7 @@ const defaultConfig = {
23
19
} ,
24
20
} ;
25
21
26
- export default [
22
+ module . exports = [
27
23
{
28
24
...defaultConfig ,
29
25
output : {
@@ -39,7 +35,7 @@ export default [
39
35
...defaultConfig ,
40
36
output : {
41
37
path : path . resolve ( __dirname , './dist' ) ,
42
- filename : 'ods-charts-module .js' ,
38
+ filename : 'ods-charts.esm .js' ,
43
39
library : {
44
40
type : 'module' ,
45
41
} ,
You can’t perform that action at this time.
0 commit comments