Skip to content

Commit

Permalink
set target to node v12 - fixes #61
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Sep 4, 2021
1 parent 0a5e5b0 commit 1cd56c9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 5 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 @@ -55,6 +55,7 @@
"@types/jest": "^26.0.24",
"@types/long": "^4.0.1",
"@types/node": "^15.14.3",
"@tsconfig/node12": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/eslint-plugin-tslint": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
Expand Down
5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"extends": "@tsconfig/node12/tsconfig.json",
"compileOnSave": true,
"compilerOptions": {
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strict": true,
"strictNullChecks": false,
"noImplicitAny" : false,
"preserveSymlinks": true,
Expand All @@ -15,14 +15,11 @@
"inlineSources": true,
"typeRoots": ["./node_modules/@types","./lib/types" ],
"rootDir": "./lib",
"target": "ES2020",
"removeComments": true,
"module": "commonjs",
"moduleResolution": "node",
"baseUrl": ".",
"types": [ "jest","node", "webdriverio/sync","@types/fs-extra", "long"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "./dist"
Expand Down

0 comments on commit 1cd56c9

Please sign in to comment.