Skip to content

Commit

Permalink
Fix TypeScript module config (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgoss authored Nov 24, 2024
1 parent 59318d6 commit c8a5443
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test-javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,7 @@ jobs:
cache-dependency-path: javascript/package-lock.json

- run: npm install-ci-test
working-directory: javascript

- run: npm run build
working-directory: javascript
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

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

## [0.7.0] - 2024-11-24
### Added
Expand Down
4 changes: 2 additions & 2 deletions javascript/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"skipLibCheck": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"module": "ESNext",
"module": "NodeNext",
"lib": [
"ES2022"
],
"target": "ES2022",
"moduleResolution": "node16",
"moduleResolution": "NodeNext",
"allowSyntheticDefaultImports": true,
"noEmit": true
},
Expand Down

0 comments on commit c8a5443

Please sign in to comment.