Skip to content

Commit e3a4c61

Browse files
committed
Switch to ESModule
Signed-off-by: Rostislav Lán <[email protected]>
1 parent d0524b4 commit e3a4c61

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

podman-desktop-extension/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"icon": "icon.png",
77
"publisher": "redhat",
88
"license": "Apache-2.0",
9+
"type": "module",
910
"engines": {
1011
"podman-desktop": "^1.6.3"
1112
},
+5-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
22
"compilerOptions": {
33
"lib": ["ES2017", "webworker"],
4+
"module": "ESNext",
5+
"target": "ESNext",
46
"sourceMap": true,
57
"rootDir": "src",
68
"outDir": "dist",
79
"skipLibCheck": true,
8-
"types": ["node"]
10+
"types": ["node"],
11+
"moduleResolution": "Node",
12+
"esModuleInterop": true
913
},
1014
"include": ["src"]
1115
}

0 commit comments

Comments
 (0)