Skip to content

Commit

Permalink
fix: Update TypeScript (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Dec 8, 2022
1 parent 87ab8e2 commit d7abd48
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 27 deletions.
27 changes: 20 additions & 7 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@
"node": ">=14"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.14",
"coveralls": "^3.1.1",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
"typescript": "^4.9.4"
},
"scripts": {
"prepublish": "npm run clean-build",
Expand Down
37 changes: 18 additions & 19 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"strict": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"outDir": "dist"
},
"include": [
"src"
]
}
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node14/tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"strict": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"outDir": "dist"
},
"include": ["src"]
}

0 comments on commit d7abd48

Please sign in to comment.