Skip to content

Commit

Permalink
fix(pr-deploy-site): explicitly set types to not include whole @types…
Browse files Browse the repository at this point in the history
…/* globals which are causing issues with addition of @types/web (#31465)
  • Loading branch information
Hotell authored May 23, 2024
1 parent 66ce207 commit b45f592
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/pr-deploy-site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"clean": "just-scripts clean",
"generate:site": "just-scripts generate:site",
"lint": "eslint --ext .js,.ts --cache .",
"type-check": "tsc -p ."
"type-check": "tsc -p . --noEmit"
},
"license": "MIT",
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions apps/pr-deploy-site/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"allowJs": true,
"lib": ["ES2020", "DOM"]
},
"types": [],
"include": ["pr-deploy-site.js", "just.config.ts"],
"files": ["../../typings/find-free-port/index.d.ts"]
}

0 comments on commit b45f592

Please sign in to comment.