diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 26ebdb7..5386597 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,3 +1,11 @@ +packages: + # Why mark the repository root as a package? + # + # It appears that Vercel fails during the `pnpm install` step + # when the packages field is missing from pnpm-workspace.yaml. + # @see https://github.com/changesets/bot/pull/113 + - "." + allowBuilds: msw: true diff --git a/tsconfig.json b/tsconfig.json index dce7883..0f34a35 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "rewriteRelativeImportExtensions": true, "skipLibCheck": true, "lib": ["esnext"], + "types": ["node"], "allowJs": false, "incremental": false, "resolveJsonModule": true,