We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0524b4 commit e3a4c61Copy full SHA for e3a4c61
podman-desktop-extension/package.json
@@ -6,6 +6,7 @@
6
"icon": "icon.png",
7
"publisher": "redhat",
8
"license": "Apache-2.0",
9
+ "type": "module",
10
"engines": {
11
"podman-desktop": "^1.6.3"
12
},
podman-desktop-extension/tsconfig.json
@@ -1,11 +1,15 @@
1
{
2
"compilerOptions": {
3
"lib": ["ES2017", "webworker"],
4
+ "module": "ESNext",
5
+ "target": "ESNext",
"sourceMap": true,
"rootDir": "src",
"outDir": "dist",
"skipLibCheck": true,
- "types": ["node"]
+ "types": ["node"],
+ "moduleResolution": "Node",
+ "esModuleInterop": true
13
14
"include": ["src"]
15
}
0 commit comments