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“;

    1. the `NodeJS.ProcessEnv` type in its type definitions. In one of the modules of
    2. your project that imports it as a dependency, you could put something like this
    3. in there which will solve the problem:
    4. declare global {
    5. namespace NodeJS {
    6. type ProcessEnv = Record<string, string>;
    7. }

    Getting type errors like cannot find or HTMLElement