Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency to version 🌟 #1528

Merged
merged 3 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions backend/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,16 @@ app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());

app.use(
// @ts-expect-error
session({
secret: "session secret",
resave: false,
saveUninitialized: false,
unset: "destroy",
})
);
// @ts-expect-error
app.use(passport.initialize());
app.use(passport.session());

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

/* istanbul ignore next */
Expand Down
1 change: 0 additions & 1 deletion scripts/testServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const app = express();

setupProxy(app);

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

Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"noEmit": true,
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true,
"types": ["cypress"],
"types": ["cypress"]
},
"include": [
"src/**/*.cy.{js,ts,jsx,tsx}",
"scripts",
"backend",
"src/__tests__",
"cypress.d.ts",
"src/utils/portUtils.ts",
],
"src/utils/portUtils.ts"
]
}
Loading