Skip to content

Commit

Permalink
Bump all dependencies
Browse files Browse the repository at this point in the history
Also update `tsconfig.json` to move `target` and `module` under
`compilerOptions` where they belong.  Latest esbuild warns about this now.
  • Loading branch information
bhousel committed Sep 1, 2023
1 parent 99d6717 commit d1608a7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
},
"devDependencies": {
"@mapbox/geojson-rewind": "^0.5.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"esbuild": "^0.18.11",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.7",
"esbuild": "^0.19.2",
"esbuild-jest": "~0.5.0",
"jest": "^29.6.1",
"jest-extended": "^4.0.0",
"jest": "^29.6.4",
"jest-extended": "^4.0.1",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"typescript": "^5.1.6"
"typescript": "^5.2.2"
},
"scripts": {
"all": "run-s clean build test",
Expand Down
9 changes: 4 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"include": ["src/*"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"module": "ES2020",
"module": "es2020",
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist",
Expand All @@ -15,8 +15,7 @@
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictNullChecks": true
},
"target": "esnext",
"module": "commonjs"
"strictNullChecks": true,
"target": "esnext"
}
}

0 comments on commit d1608a7

Please sign in to comment.