Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Aug 6, 2021
1 parent 49d0db8 commit 8f5be40
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
typescript-version:
- 'latest'
- '^4.3.0'
- '4.2.0'
- '~4.2.4'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down
7 changes: 6 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"extends": "@sindresorhus/tsconfig",
"compilerOptions": {
"noEmit": true
"noEmit": true,
"target": "ES2019", // Node.js 12
"lib": [
"ES2020",
"DOM"
]
},
"exclude": [
"test-d/**/*"
Expand Down

0 comments on commit 8f5be40

Please sign in to comment.