Skip to content

Commit

Permalink
Merge pull request #579 from shiguredo/feature/change-tsconfig-module…
Browse files Browse the repository at this point in the history
…-resolution-bundler

Feature/change tsconfig module resolution bundler
  • Loading branch information
voluntas authored Dec 15, 2024
2 parents 93a1d31 + 3b0fe6d commit 37df730
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
- @voluntas
- [ADD] E2E テストに `"type": "switched"` のテストを追加する
- @voluntas
- [CHANGE] tsconfig.json の moduleResolution を Bundler に変更する
- @voluntas
- [CHANGE] tsconfig.json の target と module を ES2022 に変更する
- @voluntas
- [CHANGE] examples 以下専用の vite.config.mjs を用意する
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ pnpm add sora-js-sdk

> [!CAUTION]
> Sora JavaScript SDK 2024.2.0 以降は [Compression Stream API](https://developer.mozilla.org/ja/docs/Web/API/Compression_Streams_API) を利用しているため、ブラウザの要件がありますのでご確認ください。
>
> - Chrome / Edge 80 以降
> - Firefox 113 以降
> - Safari 16.4 以降
Expand Down
2 changes: 1 addition & 1 deletion examples/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"declaration": true,
"strictNullChecks": true,
"importHelpers": true,
"moduleResolution": "node",
"moduleResolution": "Bundler",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"declaration": true,
"strictNullChecks": true,
"importHelpers": true,
"moduleResolution": "node",
"moduleResolution": "Bundler",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
Expand Down

0 comments on commit 37df730

Please sign in to comment.