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.
14 lines
383 B
JSON
14 lines
383 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"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",
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true
|
|
}
|
|
}
|