Skip to content

Commit c8a5443

Browse files
authored
Fix TypeScript module config (#56)
1 parent 59318d6 commit c8a5443

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/test-javascript.yml

+3
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,7 @@ jobs:
3636
cache-dependency-path: javascript/package-lock.json
3737

3838
- run: npm install-ci-test
39+
working-directory: javascript
40+
41+
- run: npm run build
3942
working-directory: javascript

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
### Fixed
10+
- Correct TypeScript output config ([#56](https://github.com/cucumber/junit-xml-formatter/pull/56))
911

1012
## [0.7.0] - 2024-11-24
1113
### Added

javascript/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
"skipLibCheck": true,
1212
"strictNullChecks": true,
1313
"experimentalDecorators": true,
14-
"module": "ESNext",
14+
"module": "NodeNext",
1515
"lib": [
1616
"ES2022"
1717
],
1818
"target": "ES2022",
19-
"moduleResolution": "node16",
19+
"moduleResolution": "NodeNext",
2020
"allowSyntheticDefaultImports": true,
2121
"noEmit": true
2222
},

0 commit comments

Comments
 (0)