Skip to content

Commit

Permalink
Fix TypeScript compiler options; Bump ergonomic version
Browse files Browse the repository at this point in the history
  • Loading branch information
kamarmack committed Jun 6, 2024
1 parent 3099ecd commit 3067575
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"bugs": "https://github.com/kamarmack/ergonomic-node/issues",
"dependencies": {
"@google-cloud/storage": "^7.4.0",
"ergonomic": "^0.2.9",
"ergonomic": "^0.2.11",
"change-case": "^4.1.2",
"google-libphonenumber": "^3.2.31",
"ky-universal": "^0.12.0",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
// End -- Base TypeScript Configurations for a strict environment

// Start -- Base TypeScript Configurations for a ES6 environment
"module": "ESNext",
"moduleResolution": "Node",
"module": "esnext",
"moduleResolution": "node",
"target": "es6",
// End -- Base TypeScript Configurations for a ES6 environment

Expand Down

0 comments on commit 3067575

Please sign in to comment.