Merge pull request #16532 from overleaf/ab-enable-typechecking-backend-modules

[web] Enable type checking on some backend modules with types

GitOrigin-RevId: 74728bf65de34ee3c2f4601a5add8bbb948ce765
This commit is contained in:
Alexandre Bourdin 2024-01-16 15:13:25 +01:00 committed by Copybot
parent fc3fb7318a
commit 061839d610
4 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,4 @@
// ts-check
const { ObjectId } = require('mongodb')
const _ = require('lodash')
const { promisify } = require('util')

View file

@ -1,3 +1,4 @@
// ts-check
const _ = require('lodash')
const Metrics = require('@overleaf/metrics')
const Settings = require('@overleaf/settings')

View file

@ -1,3 +1,4 @@
// ts-check
const Settings = require('@overleaf/settings')
const RecurlyWrapper = require('./RecurlyWrapper')
const PlansLocator = require('./PlansLocator')

View file

@ -1,3 +1,4 @@
// ts-check
const crypto = require('crypto')
const SurveyCache = require('./SurveyCache')
const SubscriptionLocator = require('../Subscription/SubscriptionLocator')