V2Wizard: Add <ReleaseSelect> to Image Output step

The `<ReleaseSelect>` component now uses RTK instead of DDF. Some
additional small changes  were necessary due to Typescript - in
particular, we use a Map() to store the releases (in order to ensure
they appear in the correct order) and .tsconfig had to be modified to
allow iteration over the Map() object.
This commit is contained in:
lucasgarfield 2024-01-05 19:56:02 +01:00 committed by Sanne Raymaekers
parent 2465ab4b84
commit ad2bd7a31a
5 changed files with 70 additions and 48 deletions

View file

@ -4,6 +4,7 @@
"noImplicitAny": true,
"module": "es6",
"target": "es5",
"downlevelIteration": true, // Needed to allow iteration over some objects like Map() while target is es5
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "node",