Skip to content

Commit

Permalink
Merge pull request #290 from Arnei/more-package-type-definitions
Browse files Browse the repository at this point in the history
Install type definitions for some packages
  • Loading branch information
Arnei authored Mar 5, 2024
2 parents 3d9d88f + fd408f3 commit 58fbdbe
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 6 deletions.
26 changes: 26 additions & 0 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@types/lodash": "^4.14.202",
"@types/uuid": "^9.0.8",
"customize-cra": "^1.0.0",
"prop-types": "^15.8.1",
"react-app-rewired": "^2.2.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react";
import { useTranslation } from "react-i18next";
import { Field, Formik } from "formik";
import cn from "classnames";
// @ts-expect-error TS(7016): Could not find a declaration file for module 'loda... Remove this comment to see the full error message
import _ from "lodash";
import Notifications from "../../../shared/Notifications";
import RenderMultiField from "../../../shared/wizard/RenderMultiField";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react";
import { useTranslation } from "react-i18next";
import { Field, Formik } from "formik";
import cn from "classnames";
// @ts-expect-error TS(7016): Could not find a declaration file for module 'loda... Remove this comment to see the full error message
import _ from "lodash";
import Notifications from "../../../shared/Notifications";
import RenderMultiField from "../../../shared/wizard/RenderMultiField";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { useEffect } from "react";
import cn from "classnames";
// @ts-expect-error TS(7016): Could not find a declaration file for module 'loda... Remove this comment to see the full error message
import _ from "lodash";
import { DatePicker } from "@material-ui/pickers";
import { createTheme, ThemeProvider } from "@material-ui/core";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from "react";
import { useTranslation } from "react-i18next";
import { Formik } from "formik";
// @ts-expect-error TS(7016): Could not find a declaration file for module 'loda... Remove this comment to see the full error message
import _ from "lodash";
import cn from "classnames";
import { connect } from "react-redux";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from "react";
// @ts-expect-error TS(7016): Could not find a declaration file for module 'uuid... Remove this comment to see the full error message
import { v4 as uuidv4 } from "uuid";
import { Field } from "formik";
import {
Expand Down
1 change: 0 additions & 1 deletion app/src/slices/seriesDetailsSlice.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { PayloadAction, SerializedError, createAsyncThunk, createSlice } from '@reduxjs/toolkit'
import axios from 'axios';
// @ts-expect-error TS(7016): Could not find a declaration file for module 'loda... Remove this comment to see the full error message
import _ from "lodash";
import {
getSeriesDetailsExtendedMetadata,
Expand Down

0 comments on commit 58fbdbe

Please sign in to comment.