Skip to content

Commit

Permalink
Merge pull request #449 from SimenB/update-target
Browse files Browse the repository at this point in the history
fix: use base node14 tsconfig
  • Loading branch information
supermacro authored Oct 22, 2023
2 parents e5aebe4 + fc85f2f commit 53d083b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
13 changes: 13 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.8",
"@babel/preset-typescript": "7.16.7",
"@tsconfig/node14": "^1.0.3",
"@types/jest": "27.4.1",
"@types/node": "14.17.4",
"@typescript-eslint/eslint-plugin": "4.28.1",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"extends": "@tsconfig/node14/tsconfig.json",
"compilerOptions": {
"target": "es2015",
"module": "ES2015",
"strict": false,
"noImplicitAny": true,
"sourceMap": false,
"downlevelIteration": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"declaration": true,
"moduleResolution": "Node",
"baseUrl": "./src",
"lib": [
"dom",
Expand Down

0 comments on commit 53d083b

Please sign in to comment.