The quickest fix is to skip type checking. You can do this by using the
--no-check
flag.
```ts, ignore import type {} from ““;
```ts, ignore import type {} from “https://cdn.skypack.dev/@types/node/index.d.ts“;
the `NodeJS.ProcessEnv` type in its type definitions. In one of the modules of
your project that imports it as a dependency, you could put something like this
in there which will solve the problem:
declare global {
namespace NodeJS {
type ProcessEnv = Record<string, string>;
}