Skip to content

Commit fe570e5

Browse files
chore(deps): update dependency to version 🌟 (#1528)
1 parent dbe87e6 commit fe570e5

File tree

4 files changed

+3361
-3375
lines changed

4 files changed

+3361
-3375
lines changed

backend/app.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,19 +56,16 @@ app.use(bodyParser.urlencoded({ extended: false }));
5656
app.use(bodyParser.json());
5757

5858
app.use(
59-
// @ts-expect-error
6059
session({
6160
secret: "session secret",
6261
resave: false,
6362
saveUninitialized: false,
6463
unset: "destroy",
6564
})
6665
);
67-
// @ts-expect-error
6866
app.use(passport.initialize());
6967
app.use(passport.session());
7068

71-
// @ts-expect-error
7269
app.use(paginate.middleware(+process.env.PAGINATION_PAGE_SIZE!));
7370

7471
/* istanbul ignore next */

scripts/testServer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const app = express();
88

99
setupProxy(app);
1010

11-
// @ts-expect-error
1211
app.use(history());
1312
app.use(express.static(path.join(__dirname, "../build")));
1413

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
"noEmit": true,
1717
"jsx": "react-jsx",
1818
"noFallthroughCasesInSwitch": true,
19-
"types": ["cypress"],
19+
"types": ["cypress"]
2020
},
2121
"include": [
2222
"src/**/*.cy.{js,ts,jsx,tsx}",
2323
"scripts",
2424
"backend",
2525
"src/__tests__",
2626
"cypress.d.ts",
27-
"src/utils/portUtils.ts",
28-
],
27+
"src/utils/portUtils.ts"
28+
]
2929
}

0 commit comments

Comments
 (0)