podman-desktop/extensions/compose/tsconfig.json

18 lines
377 B
JSON
Raw Normal View History

feat: add compose extension (#1578) * feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST fixes https://github.com/containers/podman-desktop/issues/1478 Change-Id: Id0e6628ca5860649c2a0b19f7a85eb326605c9ac Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Id1304316ca7b1160e4852e1dd622c41d232df734 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * Update extensions/compose/src/compose-extension.ts Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: I1d2977d36fc7970c44c063e8bcd79f283bd8e4ed Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ied497b8ead4b9966d1a2eadfe84e0cbdb8def834 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ibe90411dee94afa96dbd689b779864eb138f295f Signed-off-by: Florent Benoit <fbenoit@redhat.com> --------- Signed-off-by: Florent Benoit <fbenoit@redhat.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com>
2023-03-16 17:47:47 +00:00
{
"compilerOptions": {
"strict": true,
feat: add compose extension (#1578) * feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST fixes https://github.com/containers/podman-desktop/issues/1478 Change-Id: Id0e6628ca5860649c2a0b19f7a85eb326605c9ac Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Id1304316ca7b1160e4852e1dd622c41d232df734 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * Update extensions/compose/src/compose-extension.ts Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: I1d2977d36fc7970c44c063e8bcd79f283bd8e4ed Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ied497b8ead4b9966d1a2eadfe84e0cbdb8def834 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ibe90411dee94afa96dbd689b779864eb138f295f Signed-off-by: Florent Benoit <fbenoit@redhat.com> --------- Signed-off-by: Florent Benoit <fbenoit@redhat.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com>
2023-03-16 17:47:47 +00:00
"target": "esnext",
"module": "esnext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"lib": ["ES2017", "webworker"],
feat: add compose extension (#1578) * feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST fixes https://github.com/containers/podman-desktop/issues/1478 Change-Id: Id0e6628ca5860649c2a0b19f7a85eb326605c9ac Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Id1304316ca7b1160e4852e1dd622c41d232df734 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * Update extensions/compose/src/compose-extension.ts Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: I1d2977d36fc7970c44c063e8bcd79f283bd8e4ed Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ied497b8ead4b9966d1a2eadfe84e0cbdb8def834 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ibe90411dee94afa96dbd689b779864eb138f295f Signed-off-by: Florent Benoit <fbenoit@redhat.com> --------- Signed-off-by: Florent Benoit <fbenoit@redhat.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com>
2023-03-16 17:47:47 +00:00
"sourceMap": true,
"rootDir": "src",
"outDir": "dist",
"skipLibCheck": true,
"types": ["node"]
},
feat: add compose extension (#1578) * feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST fixes https://github.com/containers/podman-desktop/issues/1478 Change-Id: Id0e6628ca5860649c2a0b19f7a85eb326605c9ac Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Id1304316ca7b1160e4852e1dd622c41d232df734 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * Update extensions/compose/src/compose-extension.ts Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: I1d2977d36fc7970c44c063e8bcd79f283bd8e4ed Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ied497b8ead4b9966d1a2eadfe84e0cbdb8def834 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ibe90411dee94afa96dbd689b779864eb138f295f Signed-off-by: Florent Benoit <fbenoit@redhat.com> --------- Signed-off-by: Florent Benoit <fbenoit@redhat.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com>
2023-03-16 17:47:47 +00:00
"include": ["src", "types/*.d.ts", "../../types/**/*.d.ts"]
feat: add compose extension (#1578) * feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST fixes https://github.com/containers/podman-desktop/issues/1478 Change-Id: Id0e6628ca5860649c2a0b19f7a85eb326605c9ac Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Id1304316ca7b1160e4852e1dd622c41d232df734 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * Update extensions/compose/src/compose-extension.ts Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: I1d2977d36fc7970c44c063e8bcd79f283bd8e4ed Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ied497b8ead4b9966d1a2eadfe84e0cbdb8def834 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * fixup! feat: add compose extension extension is responsible to download docker-compose and setup a 'podman-desktop' binary that will setup properly DOCKER_HOST Change-Id: Ibe90411dee94afa96dbd689b779864eb138f295f Signed-off-by: Florent Benoit <fbenoit@redhat.com> --------- Signed-off-by: Florent Benoit <fbenoit@redhat.com> Signed-off-by: Florent BENOIT <fbenoit@redhat.com> Co-authored-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com>
2023-03-16 17:47:47 +00:00
}