Skip to content

Commit 3a0e06e

Browse files
chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 (#349)
* chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix build --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mykola Mokhnach <mokhnach@gmail.com>
1 parent d3bf8eb commit 3a0e06e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
},
4545
"files": [
4646
"lib",
47-
"build",
48-
"!build/test",
47+
"build/lib",
4948
"CHANGELOG.md",
5049
"LICENSE",
5150
"npm-shrinkwrap.json",
@@ -96,7 +95,7 @@
9695
"semantic-release": "^25.0.2",
9796
"sinon": "^21.0.0",
9897
"ts-node": "^10.9.1",
99-
"typescript": "^5.4.2",
98+
"typescript": "^6.0.2",
10099
"webdriverio": "^9.0.1"
101100
}
102101
}

tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "@appium/tsconfig/tsconfig.json",
44
"compilerOptions": {
5-
"strict": false, // TODO: make this flag true
65
"outDir": "build",
76
"types": ["node", "mocha"],
87
"checkJs": true
98
},
9+
"ts-node": {
10+
"transpileOnly": true,
11+
"compilerOptions": {
12+
"rootDir": "."
13+
}
14+
},
1015
"include": [
1116
"lib",
1217
"test"

0 commit comments

Comments
 (0)