From 2554eafc1bbde2dc8dd00113bdb0b8e8afeed92e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= Date: Sun, 4 Dec 2022 22:38:16 +0000 Subject: [PATCH] Address ES2015 versioning comments and breaking changes * Add the switch to ES6/ES2015 to the breaking changes section of the readme * Add the switch to Axios v1 major version to the breaking changes section of the readme --- README.md | 7 +++++++ tsconfig.json | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 366587fe..a9ecd240 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,13 @@ await api.logout(); ## Breaking Changes +### v0.8.0 + +* The library is now fully targeted to ES6/ES2015. + [#341](https://github.com/jellyfin/jellyfin-sdk-typescript/pull/341) +* Axios received a major version upgrade. + [#300](https://github.com/jellyfin/jellyfin-sdk-typescript/pull/300) + ### v0.7.0 * Renamed package to @jellyfin/sdk. diff --git a/tsconfig.json b/tsconfig.json index ba2f8877..ac7a9b9b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,8 @@ { "extends": "@tsconfig/recommended/tsconfig.json", "compilerOptions": { - "target": "ES6", - "module": "ES6", + "target": "ES2015", + "module": "ES2015", "moduleResolution": "Node", "declaration": true, "noImplicitAny": true,