Closed AsafMah closed 2 months ago
1 files ±0 17 suites +1 8m 26s :stopwatch: + 1m 37s 275 tests ±0 267 :heavy_check_mark: ±0 8 :zzz: ±0 0 :x: ±0 281 runs ±0 273 :heavy_check_mark: ±0 8 :zzz: ±0 0 :x: ±0
Results for commit 6e58658a. ± Comparison against base commit 8fc8270c.
:recycle: This comment has been updated with latest results.
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 71.37%. Comparing base (
eba9daf
) to head (ad482f7
). Report is 18 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
We need to move to the new exports for the web people.
For this, we need to put "exports": {...} in package.json files.
Currently, our moduleResolution is set to "node", which does not support this.
The ts docs: https://www.typescriptlang.org/docs/handbook/modules/guides/choosing-compiler-options.html#im-writing-a-library
Recommend using "NodeNext" for the most compatibility.
HOWEVER, this means that every relative import needs a .js in the end.
So this PR does that.