Skip to content

Commit

Permalink
Switch to ESModule
Browse files Browse the repository at this point in the history
Signed-off-by: Rostislav Lán <[email protected]>
  • Loading branch information
rostalan committed Feb 18, 2025
1 parent d0524b4 commit e3a4c61
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions podman-desktop-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"icon": "icon.png",
"publisher": "redhat",
"license": "Apache-2.0",
"type": "module",
"engines": {
"podman-desktop": "^1.6.3"
},
Expand Down
6 changes: 5 additions & 1 deletion podman-desktop-extension/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"compilerOptions": {
"lib": ["ES2017", "webworker"],
"module": "ESNext",
"target": "ESNext",
"sourceMap": true,
"rootDir": "src",
"outDir": "dist",
"skipLibCheck": true,
"types": ["node"]
"types": ["node"],
"moduleResolution": "Node",
"esModuleInterop": true
},
"include": ["src"]
}

0 comments on commit e3a4c61

Please sign in to comment.