error TS18062: This import could not be resolved using the 'import' exports condition in its package.json. Types were found using the condition 'types', but this lower-priority condition will not be used at runtime. This is a bug in the 'dep' library's typings configuration.


!!! error TS18062: This import could not be resolved using the 'import' exports condition in its package.json. Types were found using the condition 'types', but this lower-priority condition will not be used at runtime. This is a bug in the 'dep' library's typings configuration.
==== /node_modules/dep/package.json (0 errors) ====
    {
      "name": "dep",
      "version": "1.0.0",
      "exports": {
        ".": {
            "import": "./dist/index.mjs",
            "require": "./dist/index.js",
            "types": "./dist/index.d.ts"
        }
      }
    }
    
==== /node_modules/dep/dist/index.d.ts (0 errors) ====
    export {};
    
==== /node_modules/dep/dist/index.mjs (0 errors) ====
    export {};
    
==== /index.mts (0 errors) ====
    import {} from "dep";