neoclide / coc-tsserver

Tsserver extension for coc.nvim that provide rich features like VSCode for javascript & typescript
MIT License
1.05k stars 68 forks source link

Plenty of errors with next.js projects #419

Closed slickroot closed 10 months ago

slickroot commented 1 year ago

I never had a problem with coc-tsserver until yesterday, it seems that it doesn't do okay with JSX syntax on next.js projects. The issue is easy to reproduce:

Trying to troubleshoot this, when opening tsserver.openTsServerLog I can find the request and response: image image

When I execute tsserver myself I can send the request and get 0 errors: image

It was hard for me to pin it down to where the problem is, so I'm asking for help here, does this make sense?

chemzqm commented 1 year ago

Need full log from tsserver.openTsServerLog

zack commented 10 months ago

Hey there, I'm seeing the same issues on a brand new next.js project. Thanks for all of your work with this. :) Here's the log with verbose logging. I'm seeing all kinds of (seemingly) nonsensical errors, including the one from the poster above. Happy to provide more info if that'd be helpful!

Ok, thanks again!

Info 0    [17:00:24.832] Starting TS Server
Info 1    [17:00:24.832] Version: 4.9.5
Info 2    [17:00:24.832] Arguments: /home/zack/.nvm/versions/node/v19.2.0/bin/node /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js --useInferredProjectPerProjectRoot --cancellationPipeName /tmp/nvim.zack/gaUXk7/coc-tsserver/0d79b06c44f830e11563/tscancellation-5029a41ed6d78434b082.tmp* --logVerbosity verbose --logFile /tmp/nvim.zack/gaUXk7/coc-tsserver-log/tsserver-log-tFOGtc/tsserver.log --locale en --noGetErrOnBackgroundUpdate --validateDefaultNpmLocation --useNodeIpc
Info 3    [17:00:24.832] Platform: linux NodeVersion: 19 CaseSensitive: true
Info 4    [17:00:24.833] ServerMode: undefined syntaxOnly: false hasUnknownServerMode: undefined
Info 5    [17:00:24.836] Binding...
Info 6    [17:00:24.840] request:
    {
      "seq": 0,
      "type": "request",
      "command": "configure",
      "arguments": {
        "hostInfo": "coc-nvim",
        "preferences": {
          "providePrefixAndSuffixTextForRename": true,
          "allowRenameOfImportPath": true,
          "includePackageJsonAutoImports": "auto"
        },
        "watchOptions": {}
      }
    }
Info 7    [17:00:24.840] Host information coc-nvim
Info 8    [17:00:24.840] Host watch options changed to undefined, it will be take effect for next watches.
Info 9    [17:00:24.840] response:
    {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true}
Perf 10   [17:00:24.840] 0::configure: async elapsed time (in milliseconds) 0.7175
Info 11   [17:00:24.840] request:
    {
      "seq": 1,
      "type": "request",
      "command": "compilerOptionsForInferredProjects",
      "arguments": {
        "options": {
          "module": "ESNext",
          "moduleResolution": "Node",
          "target": "ES2020",
          "jsx": "react",
          "strictNullChecks": true,
          "strictFunctionTypes": true,
          "sourceMap": true,
          "allowJs": true,
          "allowSyntheticDefaultImports": true,
          "allowNonTsExtensions": true
        }
      }
    }
Perf 12   [17:00:24.841] 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 0.2117
Info 13   [17:00:24.841] response:
    {"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true}
Info 14   [17:00:24.841] event:
    {"seq":0,"type":"event","event":"typingsInstallerPid","body":{"pid":12334}}
Info 15   [17:00:24.983] request:
    {
      "seq": 2,
      "type": "request",
      "command": "updateOpen",
      "arguments": {
        "changedFiles": [],
        "closedFiles": [],
        "openFiles": [
          {
            "file": "/home/zack/development/facts-party/app/page.tsx",
            "fileContent": "import Image from \"next/image\";\n\nexport default function Home() {\n  return (\n    <main className=\"flex min-h-screen flex-col items-center justify-between p-24\">\n      <div className=\"z-10 max-w-5xl w-full items-center justify-between font-mono text-sm lg:flex\">\n        <p className=\"fixed left-0 top-0 flex w-full justify-center border-b border-gray-300 bg-gradient-to-b from-zinc-200 pb-6 pt-8 backdrop-blur-2xl dark:border-neutral-800 dark:bg-zinc-800/30 dark:from-inherit lg:static lg:w-auto  lg:rounded-xl lg:border lg:bg-gray-200 lg:p-4 lg:dark:bg-zinc-800/30\">\n          Get started by editing&nbsp;\n          <code className=\"font-mono font-bold\">app/page.tsx</code>\n        </p>\n        <div className=\"fixed bottom-0 left-0 flex h-48 w-full items-end justify-center bg-gradient-to-t from-white via-white dark:from-black dark:via-black lg:static lg:h-auto lg:w-auto lg:bg-none\">\n          <a\n            className=\"pointer-events-none flex place-items-center gap-2 p-8 lg:pointer-events-auto lg:p-0\"\n            href=\"https://vercel.com?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app\"\n            target=\"_blank\"\n            rel=\"noopener noreferrer\"\n          >\n            By{\" \"}\n            <Image\n              src=\"/vercel.svg\"\n              alt=\"Vercel Logo\"\n              className=\"dark:invert\"\n              width={100}\n              height={24}\n              priority\n            />\n          </a>\n        </div>\n      </div>\n\n      <div className=\"relative flex place-items-center before:absolute before:h-[300px] before:w-[480px] before:-translate-x-1/2 before:rounded-full before:bg-gradient-radial before:from-white before:to-transparent before:blur-2xl before:content-[''] after:absolute after:-z-20 after:h-[180px] after:w-[240px] after:translate-x-1/3 after:bg-gradient-conic after:from-sky-200 after:via-blue-200 after:blur-2xl after:content-[''] before:dark:bg-gradient-to-br before:dark:from-transparent before:dark:to-blue-700 before:dark:opacity-10 after:dark:from-sky-900 after:dark:via-[#0141ff] after:dark:opacity-40 before:lg:h-[360px] z-[-1]\">\n        <Image\n          className=\"relative dark:drop-shadow-[0_0_0.3rem_#ffffff70] dark:invert\"\n          src=\"/next.svg\"\n          alt=\"Next.js Logo\"\n          width={180}\n          height={37}\n          priority\n        />\n      </div>\n\n      <div className=\"mb-32 grid text-center lg:max-w-5xl lg:w-full lg:mb-0 lg:grid-cols-4 lg:text-left\">\n        <a\n          href=\"https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app\"\n          className=\"group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30\"\n          target=\"_blank\"\n          rel=\"noopener noreferrer\"\n        >\n          <h2 className={`mb-3 text-2xl font-semibold`}>\n            Docs{\" \"}\n            <span className=\"inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none\">\n              -&gt;\n            </span>\n          </h2>\n          <p className={`m-0 max-w-[30ch] text-sm opacity-50`}>\n            Find in-depth information about Next.js features and API.\n          </p>\n        </a>\n\n        <a\n          href=\"https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app\"\n          className=\"group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30\"\n          target=\"_blank\"\n          rel=\"noopener noreferrer\"\n        >\n          <h2 className={`mb-3 text-2xl font-semibold`}>\n            Learn{\" \"}\n            <span className=\"inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none\">\n              -&gt;\n            </span>\n          </h2>\n          <p className={`m-0 max-w-[30ch] text-sm opacity-50`}>\n            Learn about Next.js in an interactive course with&nbsp;quizzes!\n          </p>\n        </a>\n\n        <a\n          href=\"https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app\"\n          className=\"group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30\"\n          target=\"_blank\"\n          rel=\"noopener noreferrer\"\n        >\n          <h2 className={`mb-3 text-2xl font-semibold`}>\n            Templates{\" \"}\n            <span className=\"inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none\">\n              -&gt;\n            </span>\n          </h2>\n          <p className={`m-0 max-w-[30ch] text-sm opacity-50`}>\n            Explore the Next.js 13 playground.\n          </p>\n        </a>\n\n        <a\n          href=\"https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app\"\n          className=\"group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30\"\n          target=\"_blank\"\n          rel=\"noopener noreferrer\"\n        >\n          <h2 className={`mb-3 text-2xl font-semibold`}>\n            Deploy{\" \"}\n            <span className=\"inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none\">\n              -&gt;\n            </span>\n          </h2>\n          <p className={`m-0 max-w-[30ch] text-sm opacity-50`}>\n            Instantly deploy your Next.js site to a shareable URL with Vercel.\n          </p>\n        </a>\n      </div>\n    </main>\n  );\n}\n",
            "projectRootPath": "/home/zack/development/facts-party",
            "scriptKindName": "TS"
          }
        ]
      }
    }
Info 16   [17:00:24.984] Search path: /home/zack/development/facts-party/app
Info 17   [17:00:24.985] For info: /home/zack/development/facts-party/app/page.tsx :: Config file name: /home/zack/development/facts-party/tsconfig.json
Info 18   [17:00:24.985] Creating configuration project /home/zack/development/facts-party/tsconfig.json
Info 19   [17:00:24.986] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/tsconfig.json 2000 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Config file
Info 20   [17:00:24.987] event:
    {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/home/zack/development/facts-party/tsconfig.json","reason":"Creating possible configured project for /home/zack/development/facts-party/app/page.tsx to open"}}
Info 21   [17:00:24.999] Config: /home/zack/development/facts-party/tsconfig.json : {
 "rootNames": [
  "/home/zack/development/facts-party/next-env.d.ts",
  "/home/zack/development/facts-party/tailwind.config.ts",
  "/home/zack/development/facts-party/app/layout.tsx",
  "/home/zack/development/facts-party/app/page.tsx",
  "/home/zack/development/facts-party/app/players/layout.tsx",
  "/home/zack/development/facts-party/app/players/page.tsx",
  "/home/zack/development/facts-party/.next/types/app/layout.ts",
  "/home/zack/development/facts-party/.next/types/app/players/layout.ts",
  "/home/zack/development/facts-party/.next/types/app/players/page.ts"
 ],
 "options": {
  "target": 1,
  "lib": [
   "lib.dom.d.ts",
   "lib.dom.iterable.d.ts",
   "lib.esnext.d.ts"
  ],
  "allowJs": true,
  "skipLibCheck": true,
  "strict": true,
  "noEmit": true,
  "esModuleInterop": true,
  "module": 99,
  "resolveJsonModule": true,
  "isolatedModules": true,
  "jsx": 1,
  "incremental": true,
  "plugins": [
   {
    "name": "next"
   }
  ],
  "paths": {
   "@/*": [
    "./*"
   ]
  },
  "pathsBasePath": "/home/zack/development/facts-party",
  "configFilePath": "/home/zack/development/facts-party/tsconfig.json"
 }
}
Info 22   [17:00:24.999] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party 1 undefined Config: /home/zack/development/facts-party/tsconfig.json WatchType: Wild card directory
Info 23   [17:00:25.062] Elapsed:: 62.182904000394046ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party 1 undefined Config: /home/zack/development/facts-party/tsconfig.json WatchType: Wild card directory
Info 24   [17:00:25.062] Enabling plugin next from candidate paths: /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js/../../..
Info 25   [17:00:25.062] Loading next from /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js/../../.. (resolved to /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/node_modules)
Info 26   [17:00:25.076] Failed to load module 'next' from /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/node_modules: Error: Could not resolve JS module 'next' starting at '/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/node_modules'. Looked in: /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next/package.json, /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next.js, /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next.jsx, /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next/index.js, /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next/index.jsx, /home/zack/.config/coc/extensions/node_modules/next/package.json, /home/zack/.config/coc/extensions/node_modules/next.js, /home/zack/.config/coc/extensions/node_modules/next.jsx, /home/zack/.config/coc/extensions/node_modules/next/index.js, /home/zack/.config/coc/extensions/node_modules/next/index.jsx, /home/zack/.config/coc/node_modules/next/package.json, /home/zack/.config/coc/node_modules/next.js, /home/zack/.config/coc/node_modules/next.jsx, /home/zack/.config/coc/node_modules/next/index.js, /home/zack/.config/coc/node_modules/next/index.jsx, /home/zack/.config/node_modules/next/package.json, /home/zack/.config/node_modules/next.js, /home/zack/.config/node_modules/next.jsx, /home/zack/.config/node_modules/next/index.js, /home/zack/.config/node_modules/next/index.jsx, /home/zack/node_modules/next/package.json, /home/zack/node_modules/next.js, /home/zack/node_modules/next.jsx, /home/zack/node_modules/next/index.js, /home/zack/node_modules/next/index.jsx, /home/node_modules/next/package.json, /home/node_modules/next.js, /home/node_modules/next.jsx, /home/node_modules/next/index.js, /home/node_modules/next/index.jsx, /node_modules/next/package.json, /node_modules/next.js, /node_modules/next.jsx, /node_modules/next/index.js, /node_modules/next/index.jsx
    at Object.resolveJSModule (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:44262:19)
    at sys.require (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:185778:49)
    at Project.resolveModule (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:173487:35)
    at /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:174634:36
    at Object.firstDefined (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:221:26)
    at Project.beginEnablePluginSync (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:174633:41)
    at ProjectService.requestEnablePlugin (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:178818:49)
    at Project.enablePlugin (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:174697:37)
    at ConfiguredProject.enablePluginsWithOptions (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:175368:30)
    at ProjectService.loadConfiguredProject (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:177086:25)
    at ProjectService.createAndLoadConfiguredProject (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:177038:22)
    at ProjectService.createLoadAndUpdateConfiguredProject (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:177043:36)
    at ProjectService.assignProjectToOpenedScriptInfo (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:178129:44)
    at /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:178469:97
    at Object.flatMap (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:524:25)
    at ProjectService.applyChangesInOpenFiles (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:178469:41)
    at Session.handlers.ts.Map.ts.getEntries._a.<computed> (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:179841:46)
    at /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:182034:96
    at Session.executeWithRequestId (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:182025:28)
    at Session.executeCommand (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:182034:41)
    at Session.onMessage (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:182062:35)
    at process.<anonymous> (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:186218:31)
    at process.emit (node:events:513:28)
    at emit (node:internal/child_process:944:14)
    at process.processTicksAndRejections (node:internal/process/task_queues:83:21)
Info 27   [17:00:25.076] Couldn't find next
Info 28   [17:00:25.076] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/next-env.d.ts 500 undefined WatchType: Closed Script info
Info 29   [17:00:25.077] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/tailwind.config.ts 500 undefined WatchType: Closed Script info
Info 30   [17:00:25.077] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/app/layout.tsx 500 undefined WatchType: Closed Script info
Info 31   [17:00:25.077] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/app/players/layout.tsx 500 undefined WatchType: Closed Script info
Info 32   [17:00:25.077] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/app/players/page.tsx 500 undefined WatchType: Closed Script info
Info 33   [17:00:25.077] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/.next/types/app/layout.ts 500 undefined WatchType: Closed Script info
Info 34   [17:00:25.077] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/.next/types/app/players/layout.ts 500 undefined WatchType: Closed Script info
Info 35   [17:00:25.077] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/.next/types/app/players/page.ts 500 undefined WatchType: Closed Script info
Info 36   [17:00:25.084] Starting updateGraphWorker: Project: /home/zack/development/facts-party/tsconfig.json
Info 37   [17:00:25.093] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 38   [17:00:25.093] Elapsed:: 0.042339999694377184ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 39   [17:00:25.096] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 40   [17:00:25.096] Elapsed:: 0.011119999922811985ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 41   [17:00:25.096] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/next/package.json 2000 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: File location affecting resolution
Info 42   [17:00:25.342] DirectoryWatcher:: Added:: WatchInfo: /home/zack/.config/coc/extensions/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 43   [17:00:25.343] Elapsed:: 0.7434899997897446ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/.config/coc/extensions/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 44   [17:00:25.408] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/app 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 45   [17:00:25.408] Elapsed:: 0.009240000043064356ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/app 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 46   [17:00:25.660] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party 0 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 47   [17:00:25.660] Elapsed:: 0.015190000180155039ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party 0 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 48   [17:00:25.660] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/@types/react/package.json 2000 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: File location affecting resolution
Info 49   [17:00:25.660] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/@types/prop-types/package.json 2000 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: File location affecting resolution
Info 50   [17:00:25.660] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/@types/node/package.json 2000 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: File location affecting resolution
Info 51   [17:00:25.661] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/@next 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 52   [17:00:25.661] Elapsed:: 0.5377809996716678ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/@next 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 53   [17:00:25.662] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/next 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 54   [17:00:25.662] Elapsed:: 0.055370000191032887ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/next 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 55   [17:00:25.663] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/.next 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 56   [17:00:25.663] Elapsed:: 0.008289999794214964ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/.next 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Failed Lookup Locations
Info 57   [17:00:25.664] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/@types/json5/package.json 2000 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: File location affecting resolution
Info 58   [17:00:25.664] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/@types/react-dom/package.json 2000 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: File location affecting resolution
Info 59   [17:00:25.664] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/@types/scheduler/package.json 2000 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: File location affecting resolution
Info 60   [17:00:25.664] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/@types 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Type roots
Info 61   [17:00:25.665] Elapsed:: 0.005329999607056379ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules/@types 1 undefined Project: /home/zack/development/facts-party/tsconfig.json WatchType: Type roots
Info 62   [17:00:25.665] Finishing updateGraphWorker: Project: /home/zack/development/facts-party/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed: 580.5415409998968ms
Info 63   [17:00:25.665] Project '/home/zack/development/facts-party/tsconfig.json' (Configured)
Info 64   [17:00:25.673]    Files (202)
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es5.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2016.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.esnext.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.dom.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.dom.iterable.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.core.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.collection.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.generator.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.iterable.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.promise.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.proxy.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.reflect.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.symbol.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2016.array.include.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.object.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.string.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.intl.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.intl.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.promise.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.regexp.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.array.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.object.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.string.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.symbol.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.intl.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.bigint.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.date.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.promise.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.string.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.intl.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.number.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.promise.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.string.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.weakref.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.intl.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.array.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.error.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.intl.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.object.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.string.d.ts
    /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.esnext.intl.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/styled-jsx/types/css.d.ts
    /home/zack/development/facts-party/node_modules/@types/react/ts5.0/global.d.ts
    /home/zack/development/facts-party/node_modules/@types/prop-types/index.d.ts
    /home/zack/development/facts-party/node_modules/@types/scheduler/tracing.d.ts
    /home/zack/development/facts-party/node_modules/@types/react/ts5.0/index.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/styled-jsx/types/index.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/styled-jsx/types/macro.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/styled-jsx/types/style.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/styled-jsx/types/global.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/amp.d.ts
    /home/zack/development/facts-party/node_modules/next/amp.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/assert.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/assert/strict.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/worker_threads.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/globals.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/async_hooks.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/buffer.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/child_process.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/cluster.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/console.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/constants.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/crypto.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/dgram.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/diagnostics_channel.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/dns.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/dns/promises.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/domain.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/events.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/dom-events.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/fs.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/fs/promises.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/http.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/http2.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/https.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/inspector.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/module.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/net.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/os.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/path.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/perf_hooks.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/process.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/punycode.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/querystring.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/readline.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/readline/promises.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/repl.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/stream.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/stream/promises.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/stream/consumers.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/stream/web.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/string_decoder.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/test.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/timers.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/timers/promises.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/tls.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/trace_events.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/tty.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/url.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/util.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/v8.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/vm.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/wasi.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/zlib.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/globals.global.d.ts
    /home/zack/development/facts-party/node_modules/@types/node/index.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/get-page-files.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/font-utils.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/compiled/webpack/webpack.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/html-context.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/lib/load-custom-routes.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/image-config.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/body-streams.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/future/route-kind.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/future/route-definitions/route-definition.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/future/route-matches/route-match.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/client/components/app-router-headers.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/request-meta.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/config-shared.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/config.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/mitt.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/client/with-router.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/client/router.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/build/analysis/get-page-static-info.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/client/route-loader.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/client/page-loader.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/bloom-filter.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/router/router.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/constants.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/utils.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/pages/_app.d.ts
    /home/zack/development/facts-party/node_modules/next/app.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/revalidate-path.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/revalidate-tag.d.ts
    /home/zack/development/facts-party/node_modules/next/cache.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/runtime-config.d.ts
    /home/zack/development/facts-party/node_modules/next/config.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/pages/_document.d.ts
    /home/zack/development/facts-party/node_modules/next/document.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/dynamic.d.ts
    /home/zack/development/facts-party/node_modules/next/dynamic.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/pages/_error.d.ts
    /home/zack/development/facts-party/node_modules/next/error.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/head.d.ts
    /home/zack/development/facts-party/node_modules/next/head.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/get-img-props.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/client/image-component.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/shared/lib/image-external.d.ts
    /home/zack/development/facts-party/node_modules/next/image.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/client/link.d.ts
    /home/zack/development/facts-party/node_modules/next/link.d.ts
    /home/zack/development/facts-party/node_modules/next/router.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/client/script.d.ts
    /home/zack/development/facts-party/node_modules/next/script.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/http.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/future/helpers/i18n-provider.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/next-url.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/cookies.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/response.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/types.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/request.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/user-agent.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/server/web/spec-extension/image-response.d.ts
    /home/zack/development/facts-party/node_modules/next/dist/compiled/@vercel/og/types.d.ts
    /home/zack/development/facts-party/node_modules/next/server.d.ts
    /home/zack/development/facts-party/node_modules/next/types/global.d.ts
    /home/zack/development/facts-party/node_modules/next/index.d.ts
    /home/zack/development/facts-party/node_modules/next/image-types/global.d.ts
    /home/zack/development/facts-party/next-env.d.ts
    /home/zack/development/facts-party/tailwind.config.ts
    /home/zack/development/facts-party/app/layout.tsx
    /home/zack/development/facts-party/app/page.tsx
    /home/zack/development/facts-party/app/players/layout.tsx
    /home/zack/development/facts-party/app/players/page.tsx
    /home/zack/development/facts-party/.next/types/app/layout.ts
    /home/zack/development/facts-party/.next/types/app/players/layout.ts
    /home/zack/development/facts-party/.next/types/app/players/page.ts
    /home/zack/development/facts-party/node_modules/@types/json5/index.d.ts
    /home/zack/development/facts-party/node_modules/@types/react-dom/index.d.ts
    /home/zack/development/facts-party/node_modules/@types/scheduler/index.d.ts

    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es5.d.ts
      Library referenced via 'es5' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es5' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts
      Library referenced via 'es2015' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2016.d.ts'
      Library referenced via 'es2015' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2016.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2016.d.ts
      Library referenced via 'es2016' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
      Library referenced via 'es2016' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts
      Library referenced via 'es2017' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
      Library referenced via 'es2017' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts
      Library referenced via 'es2018' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
      Library referenced via 'es2018' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts
      Library referenced via 'es2019' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'es2019' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts
      Library referenced via 'es2020' from file 'node_modules/@types/node/index.d.ts'
      Library referenced via 'es2020' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.d.ts
      Library referenced via 'es2021' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts
      Library referenced via 'es2022' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.esnext.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.esnext.d.ts
      Library 'lib.esnext.d.ts' specified in compilerOptions
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.dom.d.ts
      Library 'lib.dom.d.ts' specified in compilerOptions
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.dom.iterable.d.ts
      Library 'lib.dom.iterable.d.ts' specified in compilerOptions
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.core.d.ts
      Library referenced via 'es2015.core' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.core' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.collection.d.ts
      Library referenced via 'es2015.collection' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.collection' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.generator.d.ts
      Library referenced via 'es2015.generator' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.generator' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.iterable.d.ts
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.generator.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.object.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.string.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.generator.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.object.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.string.d.ts'
      Library referenced via 'es2015.iterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.promise.d.ts
      Library referenced via 'es2015.promise' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.promise' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.proxy.d.ts
      Library referenced via 'es2015.proxy' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.proxy' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.reflect.d.ts
      Library referenced via 'es2015.reflect' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.reflect' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.symbol.d.ts
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.iterable.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.iterable.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
      Library referenced via 'es2015.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
      Library referenced via 'es2015.symbol.wellknown' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.symbol.wellknown' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
      Library referenced via 'es2015.symbol.wellknown' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2015.d.ts'
      Library referenced via 'es2015.symbol.wellknown' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2016.array.include.d.ts
      Library referenced via 'es2016.array.include' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2016.d.ts'
      Library referenced via 'es2016.array.include' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2016.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.object.d.ts
      Library referenced via 'es2017.object' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
      Library referenced via 'es2017.object' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
      Library referenced via 'es2017.sharedmemory' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
      Library referenced via 'es2017.sharedmemory' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.string.d.ts
      Library referenced via 'es2017.string' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
      Library referenced via 'es2017.string' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.intl.d.ts
      Library referenced via 'es2017.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
      Library referenced via 'es2017.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
      Library referenced via 'es2017.typedarrays' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
      Library referenced via 'es2017.typedarrays' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2017.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
      Library referenced via 'es2018.asyncgenerator' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
      Library referenced via 'es2018.asyncgenerator' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
      Library referenced via 'es2018.asynciterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
      Library referenced via 'es2018.asynciterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts'
      Library referenced via 'esnext.asynciterable' from file 'node_modules/@types/node/index.d.ts'
      Library referenced via 'es2018.asynciterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
      Library referenced via 'es2018.asynciterable' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.intl.d.ts
      Library referenced via 'es2018.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
      Library referenced via 'es2018.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.intl.d.ts'
      Library referenced via 'es2018.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
      Library referenced via 'es2018.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.intl.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.promise.d.ts
      Library referenced via 'es2018.promise' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
      Library referenced via 'es2018.promise' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.regexp.d.ts
      Library referenced via 'es2018.regexp' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
      Library referenced via 'es2018.regexp' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2018.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.array.d.ts
      Library referenced via 'es2019.array' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
      Library referenced via 'es2019.array' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.object.d.ts
      Library referenced via 'es2019.object' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
      Library referenced via 'es2019.object' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.string.d.ts
      Library referenced via 'es2019.string' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
      Library referenced via 'es2019.string' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.symbol.d.ts
      Library referenced via 'es2019.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
      Library referenced via 'es2019.symbol' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.intl.d.ts
      Library referenced via 'es2019.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
      Library referenced via 'es2019.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2019.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.bigint.d.ts
      Library referenced via 'es2020.bigint' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'esnext.bigint' from file 'node_modules/@types/node/index.d.ts'
      Library referenced via 'es2020.bigint' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.date.d.ts
      Library referenced via 'es2020.date' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'es2020.date' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.promise.d.ts
      Library referenced via 'es2020.promise' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'es2020.promise' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts
      Library referenced via 'es2020.sharedmemory' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'es2020.sharedmemory' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.string.d.ts
      Library referenced via 'es2020.string' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'es2020.string' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts
      Library referenced via 'es2020.symbol.wellknown' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'es2020.symbol.wellknown' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.intl.d.ts
      Library referenced via 'es2020.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.bigint.d.ts'
      Library referenced via 'es2020.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.date.d.ts'
      Library referenced via 'es2020.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.number.d.ts'
      Library referenced via 'es2020.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'es2020.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.bigint.d.ts'
      Library referenced via 'es2020.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.date.d.ts'
      Library referenced via 'es2020.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.number.d.ts'
      Library referenced via 'es2020.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.number.d.ts
      Library referenced via 'es2020.number' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
      Library referenced via 'es2020.number' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2020.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.promise.d.ts
      Library referenced via 'es2021.promise' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.string.d.ts
      Library referenced via 'es2021.string' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.weakref.d.ts
      Library referenced via 'es2021.weakref' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.intl.d.ts
      Library referenced via 'es2021.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2021.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.array.d.ts
      Library referenced via 'es2022.array' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.error.d.ts
      Library referenced via 'es2022.error' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.intl.d.ts
      Library referenced via 'es2022.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.object.d.ts
      Library referenced via 'es2022.object' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts
      Library referenced via 'es2022.sharedmemory' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.string.d.ts
      Library referenced via 'es2022.string' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.es2022.d.ts'
    ../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.esnext.intl.d.ts
      Library referenced via 'esnext.intl' from file 'node_modules/@types/node/index.d.ts'
      Library referenced via 'esnext.intl' from file '../../.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/lib.esnext.d.ts'
    node_modules/next/dist/styled-jsx/types/css.d.ts
      Type library referenced via './css' from file 'node_modules/next/dist/styled-jsx/types/global.d.ts' with packageId 'next/dist/styled-jsx/types/css.d.ts@13.4.19'
    node_modules/@types/react/ts5.0/global.d.ts
      Referenced via 'global.d.ts' from file 'node_modules/@types/react/ts5.0/index.d.ts'
    node_modules/@types/prop-types/index.d.ts
      Imported via 'prop-types' from file 'node_modules/@types/react/ts5.0/index.d.ts' with packageId '@types/prop-types/index.d.ts@15.7.5'
      Entry point for implicit type library 'prop-types' with packageId '@types/prop-types/index.d.ts@15.7.5'
    node_modules/@types/scheduler/tracing.d.ts
      Imported via 'scheduler/tracing' from file 'node_modules/@types/react/ts5.0/index.d.ts'
    node_modules/@types/react/ts5.0/index.d.ts
      Imported via 'react' from file 'node_modules/next/dist/styled-jsx/types/index.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/styled-jsx/types/global.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/pages/_app.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Type library referenced via 'react' from file 'node_modules/next/dist/shared/lib/html-context.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via "react" from file 'node_modules/next/dist/shared/lib/html-context.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/shared/lib/utils.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/shared/lib/router/router.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/client/with-router.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/client/page-loader.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/client/route-loader.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/pages/_document.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/shared/lib/dynamic.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/pages/_error.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/shared/lib/head.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/client/image-component.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/client/link.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/client/script.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/next/dist/client/script.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
      Imported via 'react' from file 'node_modules/@types/react-dom/index.d.ts' with packageId '@types/react/ts5.0/index.d.ts@18.2.21'
    node_modules/next/dist/styled-jsx/types/index.d.ts
      Type library referenced via './index' from file 'node_modules/next/dist/styled-jsx/types/global.d.ts' with packageId 'next/dist/styled-jsx/types/index.d.ts@13.4.19'
    node_modules/next/dist/styled-jsx/types/macro.d.ts
      Type library referenced via './macro' from file 'node_modules/next/dist/styled-jsx/types/global.d.ts' with packageId 'next/dist/styled-jsx/types/macro.d.ts@13.4.19'
    node_modules/next/dist/styled-jsx/types/style.d.ts
      Type library referenced via './style' from file 'node_modules/next/dist/styled-jsx/types/global.d.ts' with packageId 'next/dist/styled-jsx/types/style.d.ts@13.4.19'
    node_modules/next/dist/styled-jsx/types/global.d.ts
      Referenced via './dist/styled-jsx/types/global.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/shared/lib/amp.d.ts
      Imported via './dist/shared/lib/amp' from file 'node_modules/next/amp.d.ts'
    node_modules/next/amp.d.ts
      Referenced via './amp.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/@types/node/assert.d.ts
      Referenced via 'assert.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/assert/strict.d.ts
      Referenced via 'assert/strict.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/worker_threads.d.ts
      Imported via 'worker_threads' from file 'node_modules/@types/node/globals.d.ts'
      Referenced via 'worker_threads.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/globals.d.ts
      Referenced via 'globals.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/async_hooks.d.ts
      Referenced via 'async_hooks.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/buffer.d.ts
      Referenced via 'buffer.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/child_process.d.ts
      Referenced via 'child_process.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/cluster.d.ts
      Referenced via 'cluster.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/console.d.ts
      Referenced via 'console.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/constants.d.ts
      Referenced via 'constants.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/crypto.d.ts
      Referenced via 'crypto.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/dgram.d.ts
      Referenced via 'dgram.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/diagnostics_channel.d.ts
      Referenced via 'diagnostics_channel.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/dns.d.ts
      Referenced via 'dns.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/dns/promises.d.ts
      Referenced via 'dns/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
      Referenced via 'dns/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/domain.d.ts
      Referenced via 'domain.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/events.d.ts
      Imported via 'events' from file 'node_modules/@types/node/dom-events.d.ts'
      Referenced via 'events.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/dom-events.d.ts
      Referenced via 'dom-events.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/fs.d.ts
      Referenced via 'fs.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/fs/promises.d.ts
      Referenced via 'fs/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/http.d.ts
      Referenced via 'http.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/http2.d.ts
      Referenced via 'http2.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/https.d.ts
      Referenced via 'https.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/inspector.d.ts
      Referenced via 'inspector.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/module.d.ts
      Referenced via 'module.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/net.d.ts
      Referenced via 'net.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/os.d.ts
      Referenced via 'os.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/path.d.ts
      Referenced via 'path.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/perf_hooks.d.ts
      Referenced via 'perf_hooks.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/process.d.ts
      Referenced via 'process.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/punycode.d.ts
      Referenced via 'punycode.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/querystring.d.ts
      Referenced via 'querystring.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/readline.d.ts
      Referenced via 'readline.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/readline/promises.d.ts
      Referenced via 'readline/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/repl.d.ts
      Referenced via 'repl.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/stream.d.ts
      Referenced via 'stream.d.ts' from file 'node_modules/@types/node/index.d.ts'
      Imported via 'stream' from file 'node_modules/@types/node/tls.d.ts'
    node_modules/@types/node/stream/promises.d.ts
      Referenced via 'stream/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/stream/consumers.d.ts
      Referenced via 'stream/consumers.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/stream/web.d.ts
      Referenced via 'stream/web.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/string_decoder.d.ts
      Referenced via 'string_decoder.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/test.d.ts
      Referenced via 'test.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/timers.d.ts
      Referenced via 'timers.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/timers/promises.d.ts
      Referenced via 'timers/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/tls.d.ts
      Referenced via 'tls.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/trace_events.d.ts
      Referenced via 'trace_events.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/tty.d.ts
      Referenced via 'tty.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/url.d.ts
      Referenced via 'url.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/util.d.ts
      Referenced via 'util.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/v8.d.ts
      Referenced via 'v8.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/vm.d.ts
      Referenced via 'vm.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/wasi.d.ts
      Referenced via 'wasi.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/zlib.d.ts
      Referenced via 'zlib.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/globals.global.d.ts
      Referenced via 'globals.global.d.ts' from file 'node_modules/@types/node/index.d.ts'
    node_modules/@types/node/index.d.ts
      Type library referenced via 'node' from file 'node_modules/next/dist/shared/lib/utils.d.ts' with packageId '@types/node/index.d.ts@20.5.6'
    node_modules/next/dist/server/get-page-files.d.ts
      Imported via '../../server/get-page-files' from file 'node_modules/next/dist/shared/lib/html-context.d.ts'
    node_modules/next/dist/server/font-utils.d.ts
      Imported via '../../server/font-utils' from file 'node_modules/next/dist/shared/lib/html-context.d.ts'
    node_modules/next/dist/compiled/webpack/webpack.d.ts
      Imported via 'next/dist/compiled/webpack/webpack' from file 'node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts'
      Imported via 'next/dist/compiled/webpack/webpack' from file 'node_modules/next/dist/server/config-shared.d.ts'
      Imported via 'next/dist/compiled/webpack/webpack' from file 'node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts'
      Imported via 'next/dist/compiled/webpack/webpack' from file 'node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts'
    node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts
      Imported via '../../build/webpack/plugins/next-font-manifest-plugin' from file 'node_modules/next/dist/shared/lib/html-context.d.ts'
    node_modules/next/dist/shared/lib/html-context.d.ts
      Imported via './html-context' from file 'node_modules/next/dist/shared/lib/utils.d.ts'
      Imported via '../shared/lib/html-context' from file 'node_modules/next/dist/pages/_document.d.ts'
    node_modules/next/dist/lib/load-custom-routes.d.ts
      Imported via '../lib/load-custom-routes' from file 'node_modules/next/dist/server/config-shared.d.ts'
      Imported via '../../lib/load-custom-routes' from file 'node_modules/next/dist/build/analysis/get-page-static-info.d.ts'
    node_modules/next/dist/shared/lib/image-config.d.ts
      Imported via '../shared/lib/image-config' from file 'node_modules/next/dist/server/config-shared.d.ts'
      Imported via './image-config' from file 'node_modules/next/dist/shared/lib/image-external.d.ts'
      Imported via './image-config' from file 'node_modules/next/dist/shared/lib/get-img-props.d.ts'
      Imported via '../shared/lib/image-config' from file 'node_modules/next/dist/client/image-component.d.ts'
    node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts
      Imported via '../build/webpack/plugins/subresource-integrity-plugin' from file 'node_modules/next/dist/server/config-shared.d.ts'
    node_modules/next/dist/server/body-streams.d.ts
      Imported via './body-streams' from file 'node_modules/next/dist/server/request-meta.d.ts'
      Imported via '../body-streams' from file 'node_modules/next/dist/server/web/types.d.ts'
    node_modules/next/dist/server/future/route-kind.d.ts
      Imported via '../route-kind' from file 'node_modules/next/dist/server/future/route-definitions/route-definition.d.ts'
    node_modules/next/dist/server/future/route-definitions/route-definition.d.ts
      Imported via '../route-definitions/route-definition' from file 'node_modules/next/dist/server/future/route-matches/route-match.d.ts'
    node_modules/next/dist/server/future/route-matches/route-match.d.ts
      Imported via './future/route-matches/route-match' from file 'node_modules/next/dist/server/request-meta.d.ts'
    node_modules/next/dist/client/components/app-router-headers.d.ts
      Imported via '../client/components/app-router-headers' from file 'node_modules/next/dist/server/request-meta.d.ts'
    node_modules/next/dist/server/request-meta.d.ts
      Imported via './request-meta' from file 'node_modules/next/dist/server/config-shared.d.ts'
      Imported via '../../request-meta' from file 'node_modules/next/dist/server/future/helpers/i18n-provider.d.ts'
    node_modules/next/dist/server/config-shared.d.ts
      Imported via './config-shared' from file 'node_modules/next/dist/server/config.d.ts'
      Imported via './config-shared' from file 'node_modules/next/dist/server/config.d.ts'
      Imported via '../../server/config-shared' from file 'node_modules/next/dist/build/analysis/get-page-static-info.d.ts'
      Imported via '../../config-shared' from file 'node_modules/next/dist/server/web/spec-extension/request.d.ts'
      Imported via '../config-shared' from file 'node_modules/next/dist/server/web/types.d.ts'
      Imported via '../../config-shared' from file 'node_modules/next/dist/server/web/spec-extension/response.d.ts'
      Imported via '../config-shared' from file 'node_modules/next/dist/server/web/next-url.d.ts'
      Imported via '../../config-shared' from file 'node_modules/next/dist/server/future/helpers/i18n-provider.d.ts'
    node_modules/next/dist/server/config.d.ts
      Imported via '../../server/config' from file 'node_modules/next/dist/shared/lib/utils.d.ts'
      Imported via '../server/config' from file 'node_modules/next/dist/lib/load-custom-routes.d.ts'
      Imported via '../../../server/config' from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
    node_modules/next/dist/shared/lib/mitt.d.ts
      Imported via '../mitt' from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
    node_modules/next/dist/client/with-router.d.ts
      Imported via './with-router' from file 'node_modules/next/dist/client/router.d.ts'
    node_modules/next/dist/client/router.d.ts
      Imported via '../../../client/router' from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
      Imported via './router' from file 'node_modules/next/dist/client/with-router.d.ts'
      Imported via '../client/router' from file 'node_modules/next/dist/pages/_app.d.ts'
      Imported via './dist/client/router' from file 'node_modules/next/router.d.ts'
      Imported via './dist/client/router' from file 'node_modules/next/router.d.ts'
    node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts
      Imported via '../webpack/loaders/get-module-build-info' from file 'node_modules/next/dist/build/analysis/get-page-static-info.d.ts'
    node_modules/next/dist/build/analysis/get-page-static-info.d.ts
      Imported via '../build/analysis/get-page-static-info' from file 'node_modules/next/dist/client/route-loader.d.ts'
      Imported via '../../analysis/get-page-static-info' from file 'node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts'
      Imported via '../build/analysis/get-page-static-info' from file 'node_modules/next/dist/client/page-loader.d.ts'
    node_modules/next/dist/client/route-loader.d.ts
      Imported via './route-loader' from file 'node_modules/next/dist/client/page-loader.d.ts'
    node_modules/next/dist/client/page-loader.d.ts
      Imported via '../../../client/page-loader' from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
      Imported via '../../../client/page-loader' from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
      Imported via "../../../client/page-loader" from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
    node_modules/next/dist/shared/lib/bloom-filter.d.ts
      Imported via '../../lib/bloom-filter' from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
      Imported via '../../lib/bloom-filter' from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
    node_modules/next/dist/shared/lib/router/router.d.ts
      Imported via './router/router' from file 'node_modules/next/dist/shared/lib/utils.d.ts'
      Imported via '../shared/lib/router/router' from file 'node_modules/next/dist/client/router.d.ts'
      Imported via '../shared/lib/router/router' from file 'node_modules/next/dist/client/router.d.ts'
    node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts
      Imported via './modern-browserslist-target' from file 'node_modules/next/dist/shared/lib/constants.d.ts'
    node_modules/next/dist/shared/lib/constants.d.ts
      Imported via './constants' from file 'node_modules/next/dist/shared/lib/utils.d.ts'
    node_modules/next/dist/shared/lib/utils.d.ts
      Imported via '../shared/lib/utils' from file 'node_modules/next/dist/pages/_app.d.ts'
      Imported via './utils' from file 'node_modules/next/dist/shared/lib/html-context.d.ts'
      Imported via '../shared/lib/utils' from file 'node_modules/next/dist/server/config-shared.d.ts'
      Imported via '../shared/lib/utils' from file 'node_modules/next/dist/client/with-router.d.ts'
      Imported via '../utils' from file 'node_modules/next/dist/shared/lib/router/router.d.ts'
      Imported via '../shared/lib/utils' from file 'node_modules/next/dist/pages/_document.d.ts'
      Imported via '../shared/lib/utils' from file 'node_modules/next/dist/pages/_error.d.ts'
    node_modules/next/dist/pages/_app.d.ts
      Imported via './dist/pages/_app' from file 'node_modules/next/app.d.ts'
      Imported via './dist/pages/_app' from file 'node_modules/next/app.d.ts'
    node_modules/next/app.d.ts
      Referenced via './app.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts
      Imported via 'next/dist/server/web/spec-extension/unstable-cache' from file 'node_modules/next/cache.d.ts'
    node_modules/next/dist/server/web/spec-extension/revalidate-path.d.ts
      Imported via 'next/dist/server/web/spec-extension/revalidate-path' from file 'node_modules/next/cache.d.ts'
    node_modules/next/dist/server/web/spec-extension/revalidate-tag.d.ts
      Imported via 'next/dist/server/web/spec-extension/revalidate-tag' from file 'node_modules/next/cache.d.ts'
    node_modules/next/cache.d.ts
      Referenced via './cache.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/shared/lib/runtime-config.d.ts
      Imported via './dist/shared/lib/runtime-config' from file 'node_modules/next/config.d.ts'
      Imported via './dist/shared/lib/runtime-config' from file 'node_modules/next/config.d.ts'
    node_modules/next/config.d.ts
      Referenced via './config.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/pages/_document.d.ts
      Imported via './dist/pages/_document' from file 'node_modules/next/document.d.ts'
      Imported via './dist/pages/_document' from file 'node_modules/next/document.d.ts'
    node_modules/next/document.d.ts
      Referenced via './document.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/shared/lib/dynamic.d.ts
      Imported via './dist/shared/lib/dynamic' from file 'node_modules/next/dynamic.d.ts'
      Imported via './dist/shared/lib/dynamic' from file 'node_modules/next/dynamic.d.ts'
    node_modules/next/dynamic.d.ts
      Referenced via './dynamic.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/pages/_error.d.ts
      Imported via './dist/pages/_error' from file 'node_modules/next/error.d.ts'
      Imported via './dist/pages/_error' from file 'node_modules/next/error.d.ts'
    node_modules/next/error.d.ts
      Referenced via './error.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/shared/lib/head.d.ts
      Imported via './dist/shared/lib/head' from file 'node_modules/next/head.d.ts'
      Imported via './dist/shared/lib/head' from file 'node_modules/next/head.d.ts'
    node_modules/next/head.d.ts
      Referenced via './head.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/shared/lib/get-img-props.d.ts
      Imported via './get-img-props' from file 'node_modules/next/dist/shared/lib/image-external.d.ts'
      Imported via '../shared/lib/get-img-props' from file 'node_modules/next/dist/client/image-component.d.ts'
      Imported via "../shared/lib/get-img-props" from file 'node_modules/next/dist/client/image-component.d.ts'
      Imported via "../shared/lib/get-img-props" from file 'node_modules/next/dist/client/image-component.d.ts'
      Imported via "./get-img-props" from file 'node_modules/next/dist/shared/lib/image-external.d.ts'
    node_modules/next/dist/client/image-component.d.ts
      Imported via '../../client/image-component' from file 'node_modules/next/dist/shared/lib/image-external.d.ts'
    node_modules/next/dist/shared/lib/image-external.d.ts
      Imported via './dist/shared/lib/image-external' from file 'node_modules/next/image.d.ts'
      Imported via './dist/shared/lib/image-external' from file 'node_modules/next/image.d.ts'
      Imported via '../dist/shared/lib/image-external' from file 'node_modules/next/image-types/global.d.ts'
      Imported via '../dist/shared/lib/image-external' from file 'node_modules/next/image-types/global.d.ts'
      Imported via '../dist/shared/lib/image-external' from file 'node_modules/next/image-types/global.d.ts'
      Imported via '../dist/shared/lib/image-external' from file 'node_modules/next/image-types/global.d.ts'
      Imported via '../dist/shared/lib/image-external' from file 'node_modules/next/image-types/global.d.ts'
      Imported via '../dist/shared/lib/image-external' from file 'node_modules/next/image-types/global.d.ts'
      Imported via '../dist/shared/lib/image-external' from file 'node_modules/next/image-types/global.d.ts'
      Imported via '../dist/shared/lib/image-external' from file 'node_modules/next/image-types/global.d.ts'
    node_modules/next/image.d.ts
      Referenced via './image.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/client/link.d.ts
      Imported via './dist/client/link' from file 'node_modules/next/link.d.ts'
      Imported via './dist/client/link' from file 'node_modules/next/link.d.ts'
    node_modules/next/link.d.ts
      Referenced via './link.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/router.d.ts
      Referenced via './router.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/client/script.d.ts
      Imported via './dist/client/script' from file 'node_modules/next/script.d.ts'
      Imported via './dist/client/script' from file 'node_modules/next/script.d.ts'
    node_modules/next/script.d.ts
      Referenced via './script.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/dist/server/web/http.d.ts
      Imported via 'http' from file 'node_modules/next/dist/server/web/next-url.d.ts'
      Imported via 'http' from file 'node_modules/next/dist/server/web/types.d.ts'
    node_modules/next/dist/server/future/helpers/i18n-provider.d.ts
      Imported via '../future/helpers/i18n-provider' from file 'node_modules/next/dist/server/web/next-url.d.ts'
    node_modules/next/dist/server/web/next-url.d.ts
      Imported via '../next-url' from file 'node_modules/next/dist/server/web/spec-extension/response.d.ts'
      Imported via '../next-url' from file 'node_modules/next/dist/server/web/spec-extension/request.d.ts'
    node_modules/next/dist/server/web/spec-extension/cookies.d.ts
      Imported via './cookies' from file 'node_modules/next/dist/server/web/spec-extension/response.d.ts'
      Imported via './cookies' from file 'node_modules/next/dist/server/web/spec-extension/request.d.ts'
    node_modules/next/dist/server/web/spec-extension/response.d.ts
      Imported via './spec-extension/response' from file 'node_modules/next/dist/server/web/types.d.ts'
      Imported via 'next/dist/server/web/spec-extension/response' from file 'node_modules/next/server.d.ts'
    node_modules/next/dist/server/web/types.d.ts
      Imported via '../types' from file 'node_modules/next/dist/server/web/spec-extension/request.d.ts'
      Imported via 'next/dist/server/web/types' from file 'node_modules/next/server.d.ts'
    node_modules/next/dist/server/web/spec-extension/request.d.ts
      Imported via './request' from file 'node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts'
      Imported via './spec-extension/request' from file 'node_modules/next/dist/server/web/types.d.ts'
      Imported via 'next/dist/server/web/spec-extension/request' from file 'node_modules/next/server.d.ts'
    node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts
      Imported via 'next/dist/server/web/spec-extension/fetch-event' from file 'node_modules/next/server.d.ts'
      Imported via './spec-extension/fetch-event' from file 'node_modules/next/dist/server/web/types.d.ts'
    node_modules/next/dist/server/web/spec-extension/user-agent.d.ts
      Imported via 'next/dist/server/web/spec-extension/user-agent' from file 'node_modules/next/server.d.ts'
      Imported via 'next/dist/server/web/spec-extension/user-agent' from file 'node_modules/next/server.d.ts'
    node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts
      Imported via 'next/dist/compiled/@edge-runtime/primitives/url' from file 'node_modules/next/server.d.ts'
    node_modules/next/dist/server/web/spec-extension/image-response.d.ts
      Imported via 'next/dist/server/web/spec-extension/image-response' from file 'node_modules/next/server.d.ts'
    node_modules/next/dist/compiled/@vercel/og/types.d.ts
      Imported via 'next/dist/compiled/@vercel/og/types' from file 'node_modules/next/server.d.ts'
    node_modules/next/server.d.ts
      Referenced via './server.d.ts' from file 'node_modules/next/index.d.ts'
    node_modules/next/types/global.d.ts
      Type library referenced via './types/global' from file 'node_modules/next/index.d.ts' with packageId 'next/types/global.d.ts@13.4.19'
    node_modules/next/index.d.ts
      Type library referenced via 'next' from file 'next-env.d.ts' with packageId 'next/index.d.ts@13.4.19'
    node_modules/next/image-types/global.d.ts
      Type library referenced via 'next/image-types/global' from file 'next-env.d.ts' with packageId 'next/image-types/global.d.ts@13.4.19'
    next-env.d.ts
      Matched by include pattern 'next-env.d.ts' in 'tsconfig.json'
    tailwind.config.ts
      Matched by include pattern '**/*.ts' in 'tsconfig.json'
    app/layout.tsx
      Matched by include pattern '**/*.tsx' in 'tsconfig.json'
      Imported via '../../../app/layout.js' from file '.next/types/app/layout.ts'
      Imported via '../../../app/layout.js' from file '.next/types/app/layout.ts'
    app/page.tsx
      Matched by include pattern '**/*.tsx' in 'tsconfig.json'
    app/players/layout.tsx
      Matched by include pattern '**/*.tsx' in 'tsconfig.json'
      Imported via '../../../../app/players/layout.js' from file '.next/types/app/players/layout.ts'
      Imported via '../../../../app/players/layout.js' from file '.next/types/app/players/layout.ts'
    app/players/page.tsx
      Matched by include pattern '**/*.tsx' in 'tsconfig.json'
      Imported via '../../../../app/players/page.js' from file '.next/types/app/players/page.ts'
      Imported via '../../../../app/players/page.js' from file '.next/types/app/players/page.ts'
    .next/types/app/layout.ts
      Matched by include pattern '.next/types/**/*.ts' in 'tsconfig.json'
    .next/types/app/players/layout.ts
      Matched by include pattern '.next/types/**/*.ts' in 'tsconfig.json'
    .next/types/app/players/page.ts
      Matched by include pattern '.next/types/**/*.ts' in 'tsconfig.json'
    node_modules/@types/json5/index.d.ts
      Entry point for implicit type library 'json5' with packageId '@types/json5/index.d.ts@0.0.29'
    node_modules/@types/react-dom/index.d.ts
      Entry point for implicit type library 'react-dom' with packageId '@types/react-dom/index.d.ts@18.2.7'
    node_modules/@types/scheduler/index.d.ts
      Entry point for implicit type library 'scheduler' with packageId '@types/scheduler/index.d.ts@0.16.3'

Info 65   [17:00:25.674] -----------------------------------------------
Info 66   [17:00:25.676] FileWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/package.json 250 undefined WatchType: package.json file
Info 67   [17:00:25.681] AutoImportProviderProject: found 4 root files in 4 dependencies in 5.526399000082165 ms
Info 68   [17:00:25.681] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
Info 69   [17:00:25.685] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 70   [17:00:25.685] Elapsed:: 0.008959999773651361ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 71   [17:00:25.759] DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party 0 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 72   [17:00:25.759] Elapsed:: 0.011580000165849924ms DirectoryWatcher:: Added:: WatchInfo: /home/zack/development/facts-party 0 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 73   [17:00:25.760] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed: 78.27907399972901ms
Info 74   [17:00:25.760] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Info 75   [17:00:25.760]    Files (24)
    /home/zack/development/facts-party/node_modules/autoprefixer/lib/autoprefixer.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/previous-map.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/input.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/css-syntax-error.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/declaration.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/root.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/warning.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/lazy-result.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/no-work-result.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/processor.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/result.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/document.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/rule.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/node.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/comment.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/container.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/at-rule.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/list.d.ts
    /home/zack/development/facts-party/node_modules/postcss/lib/postcss.d.ts
    /home/zack/development/facts-party/node_modules/tailwindcss/types/generated/corePluginList.d.ts
    /home/zack/development/facts-party/node_modules/tailwindcss/types/generated/colors.d.ts
    /home/zack/development/facts-party/node_modules/tailwindcss/types/config.d.ts
    /home/zack/development/facts-party/node_modules/tailwindcss/types/index.d.ts
    /home/zack/development/facts-party/node_modules/typescript/lib/typescript.d.ts

    node_modules/autoprefixer/lib/autoprefixer.d.ts
      Root file specified for compilation
    node_modules/postcss/lib/previous-map.d.ts
      Imported via './previous-map.js' from file 'node_modules/postcss/lib/input.d.ts'
    node_modules/postcss/lib/input.d.ts
      Imported via './input.js' from file 'node_modules/postcss/lib/css-syntax-error.d.ts'
      Imported via './input.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './input.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/css-syntax-error.d.ts
      Imported via './css-syntax-error.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './css-syntax-error.js' from file 'node_modules/postcss/lib/warning.d.ts'
      Imported via './css-syntax-error.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/declaration.d.ts
      Imported via './declaration.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './declaration.js' from file 'node_modules/postcss/lib/container.d.ts'
      Imported via './declaration.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/root.d.ts
      Imported via './root.js' from file 'node_modules/postcss/lib/lazy-result.d.ts'
      Imported via './root.js' from file 'node_modules/postcss/lib/no-work-result.d.ts'
      Imported via './root.js' from file 'node_modules/postcss/lib/processor.d.ts'
      Imported via './root.js' from file 'node_modules/postcss/lib/document.d.ts'
      Imported via './root.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './root.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/warning.d.ts
      Imported via './warning.js' from file 'node_modules/postcss/lib/lazy-result.d.ts'
      Imported via './warning.js' from file 'node_modules/postcss/lib/no-work-result.d.ts'
      Imported via './warning.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './warning.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/lazy-result.d.ts
      Imported via './lazy-result.js' from file 'node_modules/postcss/lib/processor.d.ts'
      Imported via './lazy-result.js' from file 'node_modules/postcss/lib/no-work-result.d.ts'
      Imported via './lazy-result.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/no-work-result.d.ts
      Imported via './no-work-result.js' from file 'node_modules/postcss/lib/processor.d.ts'
    node_modules/postcss/lib/processor.d.ts
      Imported via './processor.js' from file 'node_modules/postcss/lib/result.d.ts'
      Imported via './processor.js' from file 'node_modules/postcss/lib/lazy-result.d.ts'
      Imported via './processor.js' from file 'node_modules/postcss/lib/no-work-result.d.ts'
      Imported via './processor.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/result.d.ts
      Imported via './result.js' from file 'node_modules/postcss/lib/document.d.ts'
      Imported via './result.js' from file 'node_modules/postcss/lib/lazy-result.d.ts'
      Imported via './result.js' from file 'node_modules/postcss/lib/root.d.ts'
      Imported via './result.js' from file 'node_modules/postcss/lib/no-work-result.d.ts'
      Imported via './result.js' from file 'node_modules/postcss/lib/processor.d.ts'
      Imported via './result.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './result.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/document.d.ts
      Imported via './document.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './document.js' from file 'node_modules/postcss/lib/processor.d.ts'
      Imported via './document.js' from file 'node_modules/postcss/lib/lazy-result.d.ts'
      Imported via './document.js' from file 'node_modules/postcss/lib/root.d.ts'
      Imported via './document.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/rule.d.ts
      Imported via './rule.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './rule.js' from file 'node_modules/postcss/lib/container.d.ts'
      Imported via './rule.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/node.d.ts
      Imported via './node.js' from file 'node_modules/postcss/lib/comment.d.ts'
      Imported via './node.js' from file 'node_modules/postcss/lib/declaration.d.ts'
      Imported via './node.js' from file 'node_modules/postcss/lib/warning.d.ts'
      Imported via './node.js' from file 'node_modules/postcss/lib/container.d.ts'
      Imported via './node.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/comment.d.ts
      Imported via './comment.js' from file 'node_modules/postcss/lib/container.d.ts'
      Imported via './comment.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './comment.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/container.d.ts
      Imported via './container.js' from file 'node_modules/postcss/lib/at-rule.d.ts'
      Imported via './container.js' from file 'node_modules/postcss/lib/comment.d.ts'
      Imported via './container.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './container.js' from file 'node_modules/postcss/lib/declaration.d.ts'
      Imported via './container.js' from file 'node_modules/postcss/lib/document.d.ts'
      Imported via './container.js' from file 'node_modules/postcss/lib/root.d.ts'
      Imported via './container.js' from file 'node_modules/postcss/lib/rule.d.ts'
      Imported via './container.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/at-rule.d.ts
      Imported via './at-rule.js' from file 'node_modules/postcss/lib/postcss.d.ts'
      Imported via './at-rule.js' from file 'node_modules/postcss/lib/container.d.ts'
      Imported via './at-rule.js' from file 'node_modules/postcss/lib/node.d.ts'
      Imported via './at-rule.js' from file 'node_modules/postcss/lib/node.d.ts'
    node_modules/postcss/lib/list.d.ts
      Imported via './list.js' from file 'node_modules/postcss/lib/postcss.d.ts'
    node_modules/postcss/lib/postcss.d.ts
      Root file specified for compilation
      Imported via './postcss.js' from file 'node_modules/postcss/lib/input.d.ts'
      Imported via './postcss.js' from file 'node_modules/postcss/lib/previous-map.d.ts'
      Imported via './postcss.js' from file 'node_modules/postcss/lib/document.d.ts'
      Imported via './postcss.js' from file 'node_modules/postcss/lib/result.d.ts'
      Imported via './postcss.js' from file 'node_modules/postcss/lib/lazy-result.d.ts'
      Imported via './postcss.js' from file 'node_modules/postcss/lib/root.d.ts'
      Imported via './postcss.js' from file 'node_modules/postcss/lib/no-work-result.d.ts'
      Imported via './postcss.js' from file 'node_modules/postcss/lib/processor.d.ts'
      Imported via './postcss.js' from file 'node_modules/postcss/lib/node.d.ts'
    node_modules/tailwindcss/types/generated/corePluginList.d.ts
      Imported via './generated/corePluginList' from file 'node_modules/tailwindcss/types/config.d.ts'
    node_modules/tailwindcss/types/generated/colors.d.ts
      Imported via './generated/colors' from file 'node_modules/tailwindcss/types/config.d.ts'
    node_modules/tailwindcss/types/config.d.ts
      Imported via './config.d' from file 'node_modules/tailwindcss/types/index.d.ts'
    node_modules/tailwindcss/types/index.d.ts
      Root file specified for compilation
    node_modules/typescript/lib/typescript.d.ts
      Root file specified for compilation

Info 76   [17:00:25.760] -----------------------------------------------
Info 77   [17:00:25.761] event:
    {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/home/zack/development/facts-party/tsconfig.json"}}
Info 78   [17:00:25.762] event:
    {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75e6e1cdee4ce66263a7c7fba840696053b666094a23578eff626f0230548247","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":5,"tsSize":15589,"tsx":3,"tsxSize":990,"dts":194,"dtsSize":3486267,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es5","lib":["dom","dom.iterable","esnext"],"allowJs":true,"skipLibCheck":true,"strict":true,"noEmit":true,"esModuleInterop":true,"module":"esnext","resolveJsonModule":true,"isolatedModules":true,"jsx":"preserve","incremental":true,"plugins":[""],"paths":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"4.9.5"}}}
Info 79   [17:00:25.762] event:
    {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/zack/development/facts-party/app/page.tsx","configFile":"/home/zack/development/facts-party/tsconfig.json","diagnostics":[{"start":{"line":12,"offset":5},"end":{"line":12,"offset":24},"text":"Option '--resolveJsonModule' cannot be specified without 'node' module resolution strategy.","code":5070,"category":"error","fileName":"/home/zack/development/facts-party/tsconfig.json"},{"start":{"line":11,"offset":25},"end":{"line":11,"offset":34},"text":"Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.","code":6046,"category":"error","fileName":"/home/zack/development/facts-party/tsconfig.json"}]}}
Info 80   [17:00:25.763] Project '/home/zack/development/facts-party/tsconfig.json' (Configured)
Info 80   [17:00:25.763]    Files (202)

Info 80   [17:00:25.763] -----------------------------------------------
Info 80   [17:00:25.763] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Info 80   [17:00:25.763]    Files (24)

Info 80   [17:00:25.763] -----------------------------------------------
Info 80   [17:00:25.763] Open files: 
Info 80   [17:00:25.763]    FileName: /home/zack/development/facts-party/app/page.tsx ProjectRootPath: /home/zack/development/facts-party
Info 80   [17:00:25.763]        Projects: /home/zack/development/facts-party/tsconfig.json
Perf 80   [17:00:25.763] 2::updateOpen: elapsed time (in milliseconds) 779.6926
Info 81   [17:00:25.763] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":2,"success":true,"performanceData":{"updateGraphDurationMs":658.8206149996258,"createAutoImportProviderProgramDurationMs":85.42236299999058},"body":true}
Info 82   [17:00:25.766] request:
    {
      "seq": 3,
      "type": "request",
      "command": "geterr",
      "arguments": {
        "delay": 0,
        "files": [
          "/home/zack/development/facts-party/app/page.tsx"
        ]
      }
    }
Perf 83   [17:00:25.766] 3::geterr: async elapsed time (in milliseconds) 0.5500
Info 84   [17:00:25.769] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/zack/development/facts-party/app/page.tsx","diagnostics":[{"start":{"line":5,"offset":11},"end":{"line":5,"offset":20},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":5,"offset":20},"end":{"line":5,"offset":21},"text":"')' expected.","code":1005,"category":"error"},{"start":{"line":6,"offset":12},"end":{"line":6,"offset":21},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":6,"offset":21},"end":{"line":6,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":7,"offset":12},"end":{"line":7,"offset":21},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":7,"offset":21},"end":{"line":7,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":8,"offset":15},"end":{"line":8,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":8,"offset":23},"end":{"line":8,"offset":25},"text":"Unexpected keyword or identifier.","code":1434,"category":"error"},{"start":{"line":9,"offset":17},"end":{"line":9,"offset":26},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":9,"offset":26},"end":{"line":9,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":9,"offset":63},"end":{"line":9,"offset":63},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":10,"offset":11},"end":{"line":10,"offset":11},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":11,"offset":14},"end":{"line":11,"offset":23},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":13,"offset":13},"end":{"line":13,"offset":22},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":13,"offset":22},"end":{"line":13,"offset":23},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":18,"offset":15},"end":{"line":18,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":20,"offset":15},"end":{"line":20,"offset":18},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":20,"offset":18},"end":{"line":20,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":23,"offset":25},"end":{"line":23,"offset":26},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":24,"offset":25},"end":{"line":24,"offset":26},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":26,"offset":14},"end":{"line":26,"offset":15},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":27,"offset":12},"end":{"line":27,"offset":13},"text":"Type expected.","code":1110,"category":"error"},{"start":{"line":27,"offset":13},"end":{"line":27,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":28,"offset":11},"end":{"line":28,"offset":11},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":29,"offset":9},"end":{"line":29,"offset":9},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":31,"offset":12},"end":{"line":31,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":33,"offset":11},"end":{"line":33,"offset":20},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":33,"offset":20},"end":{"line":33,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":36,"offset":21},"end":{"line":36,"offset":22},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":37,"offset":21},"end":{"line":37,"offset":22},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":39,"offset":10},"end":{"line":39,"offset":11},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":40,"offset":8},"end":{"line":40,"offset":9},"text":"Type expected.","code":1110,"category":"error"},{"start":{"line":40,"offset":9},"end":{"line":40,"offset":9},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":42,"offset":12},"end":{"line":42,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":44,"offset":11},"end":{"line":44,"offset":15},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":44,"offset":15},"end":{"line":44,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":49,"offset":15},"end":{"line":49,"offset":24},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":49,"offset":24},"end":{"line":49,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":49,"offset":56},"end":{"line":49,"offset":57},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":50,"offset":17},"end":{"line":50,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":51,"offset":19},"end":{"line":51,"offset":28},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":51,"offset":28},"end":{"line":51,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":52,"offset":16},"end":{"line":52,"offset":17},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":53,"offset":14},"end":{"line":53,"offset":15},"text":"Type expected.","code":1110,"category":"error"},{"start":{"line":53,"offset":15},"end":{"line":53,"offset":15},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":54,"offset":13},"end":{"line":54,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":55,"offset":14},"end":{"line":55,"offset":23},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":55,"offset":25},"end":{"line":55,"offset":62},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":55,"offset":63},"end":{"line":55,"offset":64},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":56,"offset":27},"end":{"line":56,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":56,"offset":39},"end":{"line":56,"offset":44},"text":"Unknown keyword or identifier. Did you mean 'out'?","code":1435,"category":"error"},{"start":{"line":56,"offset":53},"end":{"line":56,"offset":61},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":56,"offset":62},"end":{"line":56,"offset":65},"text":"Unexpected keyword or identifier.","code":1434,"category":"error"},{"start":{"line":57,"offset":11},"end":{"line":57,"offset":12},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":57,"offset":13},"end":{"line":57,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":58,"offset":11},"end":{"line":58,"offset":11},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":66,"offset":15},"end":{"line":66,"offset":24},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":66,"offset":24},"end":{"line":66,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":66,"offset":56},"end":{"line":66,"offset":57},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":67,"offset":18},"end":{"line":67,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":68,"offset":19},"end":{"line":68,"offset":28},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":68,"offset":28},"end":{"line":68,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":69,"offset":16},"end":{"line":69,"offset":17},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":70,"offset":14},"end":{"line":70,"offset":15},"text":"Type expected.","code":1110,"category":"error"},{"start":{"line":70,"offset":15},"end":{"line":70,"offset":15},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":71,"offset":13},"end":{"line":71,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":72,"offset":14},"end":{"line":72,"offset":23},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":72,"offset":25},"end":{"line":72,"offset":62},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":72,"offset":62},"end":{"line":72,"offset":63},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":72,"offset":63},"end":{"line":72,"offset":64},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":73,"offset":19},"end":{"line":73,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":73,"offset":39},"end":{"line":73,"offset":50},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":73,"offset":51},"end":{"line":73,"offset":57},"text":"Unexpected keyword or identifier.","code":1434,"category":"error"},{"start":{"line":73,"offset":62},"end":{"line":73,"offset":63},"text":"'(' expected.","code":1005,"category":"error"},{"start":{"line":73,"offset":67},"end":{"line":73,"offset":68},"text":"')' expected.","code":1005,"category":"error"},{"start":{"line":74,"offset":13},"end":{"line":74,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":75,"offset":11},"end":{"line":75,"offset":11},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":83,"offset":15},"end":{"line":83,"offset":24},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":83,"offset":24},"end":{"line":83,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":83,"offset":56},"end":{"line":83,"offset":57},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":84,"offset":22},"end":{"line":84,"offset":23},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":85,"offset":19},"end":{"line":85,"offset":28},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":85,"offset":28},"end":{"line":85,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":86,"offset":16},"end":{"line":86,"offset":17},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":87,"offset":14},"end":{"line":87,"offset":15},"text":"Type expected.","code":1110,"category":"error"},{"start":{"line":87,"offset":15},"end":{"line":87,"offset":15},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":88,"offset":13},"end":{"line":88,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":89,"offset":14},"end":{"line":89,"offset":23},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":89,"offset":25},"end":{"line":89,"offset":62},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":89,"offset":62},"end":{"line":89,"offset":63},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":89,"offset":63},"end":{"line":89,"offset":64},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":90,"offset":21},"end":{"line":90,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":90,"offset":33},"end":{"line":90,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":90,"offset":36},"end":{"line":90,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":91,"offset":11},"end":{"line":91,"offset":12},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":91,"offset":13},"end":{"line":91,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":92,"offset":11},"end":{"line":92,"offset":11},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":100,"offset":15},"end":{"line":100,"offset":24},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":100,"offset":24},"end":{"line":100,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":100,"offset":56},"end":{"line":100,"offset":57},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":101,"offset":19},"end":{"line":101,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":102,"offset":19},"end":{"line":102,"offset":28},"text":"'>' expected.","code":1005,"category":"error"},{"start":{"line":102,"offset":28},"end":{"line":102,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":103,"offset":16},"end":{"line":103,"offset":17},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":104,"offset":14},"end":{"line":104,"offset":15},"text":"Type expected.","code":1110,"category":"error"},{"start":{"line":104,"offset":15},"end":{"line":104,"offset":15},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":105,"offset":13},"end":{"line":105,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":106,"offset":14},"end":{"line":106,"offset":23},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":106,"offset":25},"end":{"line":106,"offset":62},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":106,"offset":62},"end":{"line":106,"offset":63},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":106,"offset":63},"end":{"line":106,"offset":64},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":107,"offset":23},"end":{"line":107,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":107,"offset":30},"end":{"line":107,"offset":34},"text":"Unexpected keyword or identifier.","code":1434,"category":"error"},{"start":{"line":107,"offset":43},"end":{"line":107,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":107,"offset":48},"end":{"line":107,"offset":50},"text":"Unexpected keyword or identifier.","code":1434,"category":"error"},{"start":{"line":107,"offset":51},"end":{"line":107,"offset":52},"text":"Unexpected keyword or identifier.","code":1434,"category":"error"},{"start":{"line":107,"offset":53},"end":{"line":107,"offset":62},"text":"Unexpected keyword or identifier.","code":1434,"category":"error"},{"start":{"line":107,"offset":63},"end":{"line":107,"offset":66},"text":"Unexpected keyword or identifier.","code":1434,"category":"error"},{"start":{"line":107,"offset":72},"end":{"line":107,"offset":78},"text":"'(' expected.","code":1005,"category":"error"},{"start":{"line":108,"offset":11},"end":{"line":108,"offset":12},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":108,"offset":13},"end":{"line":108,"offset":13},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":109,"offset":11},"end":{"line":109,"offset":11},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":110,"offset":9},"end":{"line":110,"offset":9},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":111,"offset":7},"end":{"line":111,"offset":7},"text":"Unterminated regular expression literal.","code":1161,"category":"error"},{"start":{"line":113,"offset":1},"end":{"line":113,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 85   [17:00:25.806] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/zack/development/facts-party/app/page.tsx","diagnostics":[{"start":{"line":73,"offset":58},"end":{"line":73,"offset":62},"text":"'with' statements are not allowed in strict mode.","code":1101,"category":"error"},{"start":{"line":107,"offset":67},"end":{"line":107,"offset":71},"text":"'with' statements are not allowed in strict mode.","code":1101,"category":"error"},{"start":{"line":1,"offset":19},"end":{"line":1,"offset":31},"text":"Cannot find module 'next/image'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?","code":2792,"category":"error"},{"start":{"line":5,"offset":6},"end":{"line":5,"offset":10},"text":"Cannot find name 'main'.","code":2304,"category":"error"},{"start":{"line":5,"offset":11},"end":{"line":5,"offset":20},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":6,"offset":8},"end":{"line":6,"offset":11},"text":"Cannot find name 'div'.","code":2304,"category":"error"},{"start":{"line":6,"offset":12},"end":{"line":6,"offset":21},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":7,"offset":10},"end":{"line":7,"offset":11},"text":"Cannot find name 'p'.","code":2304,"category":"error"},{"start":{"line":7,"offset":12},"end":{"line":7,"offset":21},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":8,"offset":11},"end":{"line":8,"offset":14},"text":"Cannot find name 'Get'.","code":2304,"category":"error"},{"start":{"line":8,"offset":15},"end":{"line":8,"offset":22},"text":"Cannot find name 'started'.","code":2304,"category":"error"},{"start":{"line":8,"offset":23},"end":{"line":8,"offset":25},"text":"Cannot find name 'by'.","code":2304,"category":"error"},{"start":{"line":8,"offset":26},"end":{"line":8,"offset":33},"text":"Cannot find name 'editing'.","code":2304,"category":"error"},{"start":{"line":8,"offset":34},"end":{"line":8,"offset":38},"text":"Cannot find name 'nbsp'.","code":2304,"category":"error"},{"start":{"line":9,"offset":12},"end":{"line":9,"offset":16},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":9,"offset":17},"end":{"line":9,"offset":26},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":9,"offset":27},"end":{"line":9,"offset":61},"text":"Operator '>' cannot be applied to types 'string' and 'number'.","code":2365,"category":"error"},{"start":{"line":9,"offset":27},"end":{"line":9,"offset":68},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":9,"offset":27},"end":{"line":10,"offset":13},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":9,"offset":49},"end":{"line":9,"offset":52},"text":"Cannot find name 'app'.","code":2304,"category":"error"},{"start":{"line":9,"offset":53},"end":{"line":9,"offset":57},"text":"Cannot find name 'page'.","code":2304,"category":"error"},{"start":{"line":11,"offset":10},"end":{"line":11,"offset":13},"text":"Cannot find name 'div'.","code":2304,"category":"error"},{"start":{"line":11,"offset":14},"end":{"line":11,"offset":23},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":12,"offset":12},"end":{"line":12,"offset":13},"text":"Cannot find name 'a'.","code":2304,"category":"error"},{"start":{"line":13,"offset":13},"end":{"line":13,"offset":22},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":14,"offset":13},"end":{"line":14,"offset":17},"text":"Cannot find name 'href'.","code":2304,"category":"error"},{"start":{"line":15,"offset":13},"end":{"line":15,"offset":19},"text":"Cannot find name 'target'.","code":2304,"category":"error"},{"start":{"line":16,"offset":13},"end":{"line":16,"offset":16},"text":"Cannot find name 'rel'.","code":2304,"category":"error"},{"start":{"line":18,"offset":13},"end":{"line":18,"offset":15},"text":"Cannot find name 'By'.","code":2304,"category":"error"},{"start":{"line":20,"offset":15},"end":{"line":20,"offset":18},"text":"Cannot find name 'src'.","code":2304,"category":"error"},{"start":{"line":21,"offset":15},"end":{"line":21,"offset":18},"text":"Cannot find name 'alt'.","code":2304,"category":"error"},{"start":{"line":22,"offset":15},"end":{"line":22,"offset":24},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":23,"offset":15},"end":{"line":23,"offset":20},"text":"Cannot find name 'width'.","code":2304,"category":"error"},{"start":{"line":24,"offset":15},"end":{"line":24,"offset":21},"text":"Cannot find name 'height'.","code":2304,"category":"error"},{"start":{"line":25,"offset":15},"end":{"line":25,"offset":23},"text":"Cannot find name 'priority'.","code":2304,"category":"error"},{"start":{"line":25,"offset":15},"end":{"line":28,"offset":15},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":25,"offset":15},"end":{"line":29,"offset":13},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":31,"offset":8},"end":{"line":31,"offset":11},"text":"Cannot find name 'div'.","code":2304,"category":"error"},{"start":{"line":31,"offset":12},"end":{"line":31,"offset":21},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":33,"offset":11},"end":{"line":33,"offset":20},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":34,"offset":11},"end":{"line":34,"offset":14},"text":"Cannot find name 'src'.","code":2304,"category":"error"},{"start":{"line":35,"offset":11},"end":{"line":35,"offset":14},"text":"Cannot find name 'alt'.","code":2304,"category":"error"},{"start":{"line":36,"offset":11},"end":{"line":36,"offset":16},"text":"Cannot find name 'width'.","code":2304,"category":"error"},{"start":{"line":37,"offset":11},"end":{"line":37,"offset":17},"text":"Cannot find name 'height'.","code":2304,"category":"error"},{"start":{"line":38,"offset":11},"end":{"line":38,"offset":19},"text":"Cannot find name 'priority'.","code":2304,"category":"error"},{"start":{"line":42,"offset":8},"end":{"line":42,"offset":11},"text":"Cannot find name 'div'.","code":2304,"category":"error"},{"start":{"line":42,"offset":12},"end":{"line":42,"offset":21},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":43,"offset":10},"end":{"line":43,"offset":11},"text":"Cannot find name 'a'.","code":2304,"category":"error"},{"start":{"line":44,"offset":11},"end":{"line":44,"offset":15},"text":"Cannot find name 'href'.","code":2304,"category":"error"},{"start":{"line":45,"offset":11},"end":{"line":45,"offset":20},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":46,"offset":11},"end":{"line":46,"offset":17},"text":"Cannot find name 'target'.","code":2304,"category":"error"},{"start":{"line":47,"offset":11},"end":{"line":47,"offset":14},"text":"Cannot find name 'rel'.","code":2304,"category":"error"},{"start":{"line":49,"offset":12},"end":{"line":49,"offset":14},"text":"Cannot find name 'h2'.","code":2304,"category":"error"},{"start":{"line":49,"offset":15},"end":{"line":49,"offset":24},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":50,"offset":13},"end":{"line":50,"offset":17},"text":"Cannot find name 'Docs'.","code":2304,"category":"error"},{"start":{"line":51,"offset":14},"end":{"line":51,"offset":18},"text":"Cannot find name 'span'.","code":2304,"category":"error"},{"start":{"line":51,"offset":19},"end":{"line":51,"offset":28},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":51,"offset":29},"end":{"line":52,"offset":16},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":51,"offset":29},"end":{"line":52,"offset":16},"text":"Operator '>' cannot be applied to types 'string' and 'number'.","code":2365,"category":"error"},{"start":{"line":52,"offset":17},"end":{"line":52,"offset":19},"text":"Cannot find name 'gt'.","code":2304,"category":"error"},{"start":{"line":55,"offset":12},"end":{"line":55,"offset":13},"text":"Cannot find name 'p'.","code":2304,"category":"error"},{"start":{"line":55,"offset":14},"end":{"line":55,"offset":23},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":55,"offset":24},"end":{"line":55,"offset":25},"text":"This expression is not callable.\n  Type '{}' has no call signatures.","code":2349,"category":"error"},{"start":{"line":55,"offset":63},"end":{"line":56,"offset":17},"text":"Type 'boolean' is not assignable to type 'string | number | symbol'.","code":2322,"category":"error"},{"start":{"line":56,"offset":13},"end":{"line":56,"offset":17},"text":"Cannot find name 'Find'.","code":2304,"category":"error"},{"start":{"line":56,"offset":20},"end":{"line":56,"offset":26},"text":"Type 'number' is not assignable to type 'object'.","code":2322,"category":"error"},{"start":{"line":56,"offset":21},"end":{"line":56,"offset":26},"text":"Cannot find name 'depth'.","code":2304,"category":"error"},{"start":{"line":56,"offset":27},"end":{"line":56,"offset":38},"text":"Cannot find name 'information'.","code":2304,"category":"error"},{"start":{"line":56,"offset":39},"end":{"line":56,"offset":44},"text":"Cannot find name 'about'.","code":2304,"category":"error"},{"start":{"line":56,"offset":45},"end":{"line":56,"offset":49},"text":"Cannot find name 'Next'.","code":2304,"category":"error"},{"start":{"line":56,"offset":53},"end":{"line":56,"offset":61},"text":"Cannot find name 'features'.","code":2304,"category":"error"},{"start":{"line":56,"offset":62},"end":{"line":56,"offset":65},"text":"Cannot find name 'and'.","code":2304,"category":"error"},{"start":{"line":56,"offset":66},"end":{"line":56,"offset":69},"text":"Cannot find name 'API'.","code":2304,"category":"error"},{"start":{"line":56,"offset":66},"end":{"line":58,"offset":13},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":60,"offset":10},"end":{"line":60,"offset":11},"text":"Cannot find name 'a'.","code":2304,"category":"error"},{"start":{"line":61,"offset":11},"end":{"line":61,"offset":15},"text":"Cannot find name 'href'.","code":2304,"category":"error"},{"start":{"line":62,"offset":11},"end":{"line":62,"offset":20},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":63,"offset":11},"end":{"line":63,"offset":17},"text":"Cannot find name 'target'.","code":2304,"category":"error"},{"start":{"line":64,"offset":11},"end":{"line":64,"offset":14},"text":"Cannot find name 'rel'.","code":2304,"category":"error"},{"start":{"line":66,"offset":12},"end":{"line":66,"offset":14},"text":"Cannot find name 'h2'.","code":2304,"category":"error"},{"start":{"line":66,"offset":15},"end":{"line":66,"offset":24},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":67,"offset":13},"end":{"line":67,"offset":18},"text":"Cannot find name 'Learn'.","code":2304,"category":"error"},{"start":{"line":68,"offset":14},"end":{"line":68,"offset":18},"text":"Cannot find name 'span'.","code":2304,"category":"error"},{"start":{"line":68,"offset":19},"end":{"line":68,"offset":28},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":68,"offset":29},"end":{"line":69,"offset":16},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":68,"offset":29},"end":{"line":69,"offset":16},"text":"Operator '>' cannot be applied to types 'string' and 'number'.","code":2365,"category":"error"},{"start":{"line":69,"offset":17},"end":{"line":69,"offset":19},"text":"Cannot find name 'gt'.","code":2304,"category":"error"},{"start":{"line":72,"offset":12},"end":{"line":72,"offset":13},"text":"Cannot find name 'p'.","code":2304,"category":"error"},{"start":{"line":72,"offset":14},"end":{"line":72,"offset":23},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":72,"offset":24},"end":{"line":72,"offset":25},"text":"This expression is not callable.\n  Type '{}' has no call signatures.","code":2349,"category":"error"},{"start":{"line":73,"offset":13},"end":{"line":73,"offset":18},"text":"Cannot find name 'Learn'.","code":2304,"category":"error"},{"start":{"line":73,"offset":19},"end":{"line":73,"offset":24},"text":"Cannot find name 'about'.","code":2304,"category":"error"},{"start":{"line":73,"offset":25},"end":{"line":73,"offset":29},"text":"Cannot find name 'Next'.","code":2304,"category":"error"},{"start":{"line":73,"offset":36},"end":{"line":73,"offset":38},"text":"Cannot find name 'an'.","code":2304,"category":"error"},{"start":{"line":73,"offset":39},"end":{"line":73,"offset":50},"text":"Cannot find name 'interactive'.","code":2304,"category":"error"},{"start":{"line":73,"offset":51},"end":{"line":73,"offset":57},"text":"Cannot find name 'course'.","code":2304,"category":"error"},{"start":{"line":73,"offset":63},"end":{"line":73,"offset":67},"text":"Cannot find name 'nbsp'.","code":2304,"category":"error"},{"start":{"line":73,"offset":68},"end":{"line":73,"offset":75},"text":"Cannot find name 'quizzes'.","code":2304,"category":"error"},{"start":{"line":73,"offset":68},"end":{"line":75,"offset":13},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":77,"offset":10},"end":{"line":77,"offset":11},"text":"Cannot find name 'a'.","code":2304,"category":"error"},{"start":{"line":78,"offset":11},"end":{"line":78,"offset":15},"text":"Cannot find name 'href'.","code":2304,"category":"error"},{"start":{"line":79,"offset":11},"end":{"line":79,"offset":20},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":80,"offset":11},"end":{"line":80,"offset":17},"text":"Cannot find name 'target'.","code":2304,"category":"error"},{"start":{"line":81,"offset":11},"end":{"line":81,"offset":14},"text":"Cannot find name 'rel'.","code":2304,"category":"error"},{"start":{"line":83,"offset":12},"end":{"line":83,"offset":14},"text":"Cannot find name 'h2'.","code":2304,"category":"error"},{"start":{"line":83,"offset":15},"end":{"line":83,"offset":24},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":84,"offset":13},"end":{"line":84,"offset":22},"text":"Cannot find name 'Templates'.","code":2304,"category":"error"},{"start":{"line":85,"offset":14},"end":{"line":85,"offset":18},"text":"Cannot find name 'span'.","code":2304,"category":"error"},{"start":{"line":85,"offset":19},"end":{"line":85,"offset":28},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":85,"offset":29},"end":{"line":86,"offset":16},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":85,"offset":29},"end":{"line":86,"offset":16},"text":"Operator '>' cannot be applied to types 'string' and 'number'.","code":2365,"category":"error"},{"start":{"line":86,"offset":17},"end":{"line":86,"offset":19},"text":"Cannot find name 'gt'.","code":2304,"category":"error"},{"start":{"line":89,"offset":12},"end":{"line":89,"offset":13},"text":"Cannot find name 'p'.","code":2304,"category":"error"},{"start":{"line":89,"offset":14},"end":{"line":89,"offset":23},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":89,"offset":24},"end":{"line":89,"offset":25},"text":"This expression is not callable.\n  Type '{}' has no call signatures.","code":2349,"category":"error"},{"start":{"line":90,"offset":13},"end":{"line":90,"offset":20},"text":"Cannot find name 'Explore'.","code":2304,"category":"error"},{"start":{"line":90,"offset":21},"end":{"line":90,"offset":24},"text":"Cannot find name 'the'.","code":2304,"category":"error"},{"start":{"line":90,"offset":25},"end":{"line":90,"offset":29},"text":"Cannot find name 'Next'.","code":2304,"category":"error"},{"start":{"line":90,"offset":36},"end":{"line":90,"offset":46},"text":"Cannot find name 'playground'.","code":2304,"category":"error"},{"start":{"line":90,"offset":36},"end":{"line":92,"offset":13},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":94,"offset":10},"end":{"line":94,"offset":11},"text":"Cannot find name 'a'.","code":2304,"category":"error"},{"start":{"line":95,"offset":11},"end":{"line":95,"offset":15},"text":"Cannot find name 'href'.","code":2304,"category":"error"},{"start":{"line":96,"offset":11},"end":{"line":96,"offset":20},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":97,"offset":11},"end":{"line":97,"offset":17},"text":"Cannot find name 'target'.","code":2304,"category":"error"},{"start":{"line":98,"offset":11},"end":{"line":98,"offset":14},"text":"Cannot find name 'rel'.","code":2304,"category":"error"},{"start":{"line":100,"offset":12},"end":{"line":100,"offset":14},"text":"Cannot find name 'h2'.","code":2304,"category":"error"},{"start":{"line":100,"offset":15},"end":{"line":100,"offset":24},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":101,"offset":13},"end":{"line":101,"offset":19},"text":"Cannot find name 'Deploy'.","code":2304,"category":"error"},{"start":{"line":102,"offset":14},"end":{"line":102,"offset":18},"text":"Cannot find name 'span'.","code":2304,"category":"error"},{"start":{"line":102,"offset":19},"end":{"line":102,"offset":28},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":102,"offset":29},"end":{"line":103,"offset":16},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":102,"offset":29},"end":{"line":103,"offset":16},"text":"Operator '>' cannot be applied to types 'string' and 'number'.","code":2365,"category":"error"},{"start":{"line":103,"offset":17},"end":{"line":103,"offset":19},"text":"Cannot find name 'gt'.","code":2304,"category":"error"},{"start":{"line":106,"offset":12},"end":{"line":106,"offset":13},"text":"Cannot find name 'p'.","code":2304,"category":"error"},{"start":{"line":106,"offset":14},"end":{"line":106,"offset":23},"text":"Cannot find name 'className'.","code":2304,"category":"error"},{"start":{"line":106,"offset":24},"end":{"line":106,"offset":25},"text":"This expression is not callable.\n  Type '{}' has no call signatures.","code":2349,"category":"error"},{"start":{"line":107,"offset":13},"end":{"line":107,"offset":22},"text":"Cannot find name 'Instantly'.","code":2304,"category":"error"},{"start":{"line":107,"offset":23},"end":{"line":107,"offset":29},"text":"Cannot find name 'deploy'.","code":2304,"category":"error"},{"start":{"line":107,"offset":30},"end":{"line":107,"offset":34},"text":"Cannot find name 'your'.","code":2304,"category":"error"},{"start":{"line":107,"offset":35},"end":{"line":107,"offset":39},"text":"Cannot find name 'Next'.","code":2304,"category":"error"},{"start":{"line":107,"offset":43},"end":{"line":107,"offset":47},"text":"Cannot find name 'site'.","code":2304,"category":"error"},{"start":{"line":107,"offset":48},"end":{"line":107,"offset":50},"text":"Cannot find name 'to'.","code":2304,"category":"error"},{"start":{"line":107,"offset":51},"end":{"line":107,"offset":52},"text":"Cannot find name 'a'.","code":2304,"category":"error"},{"start":{"line":107,"offset":53},"end":{"line":107,"offset":62},"text":"Cannot find name 'shareable'.","code":2304,"category":"error"},{"start":{"line":107,"offset":72},"end":{"line":107,"offset":78},"text":"Cannot find name 'Vercel'.","code":2304,"category":"error"},{"start":{"line":107,"offset":72},"end":{"line":109,"offset":13},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":107,"offset":72},"end":{"line":110,"offset":13},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"},{"start":{"line":107,"offset":72},"end":{"line":111,"offset":12},"text":"Operator '<' cannot be applied to types 'boolean' and 'RegExp'.","code":2365,"category":"error"}]}}
Info 86   [17:00:25.807] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/zack/development/facts-party/app/page.tsx","diagnostics":[{"start":{"line":6,"offset":22},"end":{"line":55,"offset":62},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true}]}}
Info 87   [17:00:25.807] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}}
chemzqm commented 10 months ago

Info 26 [17:00:25.076] Failed to load module 'next' from /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/node_modules: Error: Could not resolve JS module 'next' starting at '/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/node_modules'. Looked in: /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next/package.json, /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next.js, /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next.jsx, /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next/index.js, /home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/next/index.jsx, /home/zack/.config/coc/extensions/node_modules/next/package.json, /home/zack/.config/coc/extensions/node_modules/next.js, /home/zack/.config/coc/extensions/node_modules/next.jsx, /home/zack/.config/coc/extensions/node_modules/next/index.js, /home/zack/.config/coc/extensions/node_modules/next/index.jsx, /home/zack/.config/coc/node_modules/next/package.json, /home/zack/.config/coc/node_modules/next.js, /home/zack/.config/coc/node_modules/next.jsx, /home/zack/.config/coc/node_modules/next/index.js, /home/zack/.config/coc/node_modules/next/index.jsx, /home/zack/.config/node_modules/next/package.json, /home/zack/.config/node_modules/next.js, /home/zack/.config/node_modules/next.jsx, /home/zack/.config/node_modules/next/index.js, /home/zack/.config/node_modules/next/index.jsx, /home/zack/node_modules/next/package.json, /home/zack/node_modules/next.js, /home/zack/node_modules/next.jsx, /home/zack/node_modules/next/index.js, /home/zack/node_modules/next/index.jsx, /home/node_modules/next/package.json, /home/node_modules/next.js, /home/node_modules/next.jsx, /home/node_modules/next/index.js, /home/node_modules/next/index.jsx, /node_modules/next/package.json, /node_modules/next.js, /node_modules/next.jsx, /node_modules/next/index.js, /node_modules/next/index.jsx at Object.resolveJSModule (/home/zack/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib/tsserver.js:44262:19)

Tsserver have some issue with the module resolve, nothing we can do for that.