Skip to content

Commit

Permalink
fix test tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Sep 14, 2023
1 parent ac2f25b commit aff2f42
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test-types/default/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"outDir": "dist",
"noImplicitAny": true,
"target": "ES2020",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"module": "Node16",
"skipLibCheck": true,
"types": [
"expect-webdriverio"
Expand Down
13 changes: 10 additions & 3 deletions test-types/jasmine/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"moduleResolution": "nodenext",
"target": "ES2020"
"outDir": "dist",
"noImplicitAny": true,
"target": "ES2020",
"module": "Node16",
"skipLibCheck": true,
"types": [
"@types/jest",
"expect-webdriverio/jest",
"@wdio/globals/types"
]
}
}
3 changes: 1 addition & 2 deletions test-types/jest/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"outDir": "dist",
"noImplicitAny": true,
"target": "ES2020",
"module": "ES2015",
"moduleResolution": "nodenext",
"module": "Node16",
"skipLibCheck": true,
"types": [
"@types/jest",
Expand Down

0 comments on commit aff2f42

Please sign in to comment.