@shopify/typescript-configs
Advanced tools
Comparing version 4.0.0 to 5.0.0
@@ -7,3 +7,3 @@ { | ||
"experimentalDecorators": true, | ||
"lib": ["dom", "es2018", "esnext.asynciterable"], | ||
"lib": ["dom", "es2020"], | ||
"moduleResolution": "node", | ||
@@ -10,0 +10,0 @@ "noUnusedLocals": true, |
@@ -8,11 +8,17 @@ # Changelog | ||
<!-- ## [Unreleased] --> | ||
<!-- ## Unreleased --> | ||
## [4.0.0] - 2021-02-24 | ||
## 5.0.0 - 2021-06-11 | ||
### Breaking Change | ||
Increased the target and lib definitions to es2020 in both `base.json` and `dom.json`. This allows for a greater range of standard features to be defined and used. We expect typescript will be ran through Babel to downlevel/polyfill all features required for your target environment [[#239](https://github.com/Shopify/web-configs/pull/239)] | ||
## 4.0.0 - 2021-02-24 | ||
### Breaking Change | ||
Set `isolatedModules` to be true by default. Sewing-kit is moving away from a `tsc` based compilation process, towards using babel/esbuild only single file transpilation. Prepare consumers for this change by making type-checking identify code that can be problematic with single-file transpilers. [[#214](https://github.com/Shopify/web-configs/pull/214)] | ||
## [3.0.0] - 2020-06-04 | ||
## 3.0.0 - 2020-06-04 | ||
@@ -37,3 +43,3 @@ ### Breaking Change | ||
## [2.0.2] - 2020-03-28 | ||
## 2.0.2 - 2020-03-28 | ||
@@ -40,0 +46,0 @@ - Start of Changelog |
@@ -8,10 +8,9 @@ { | ||
"dom.iterable", | ||
"es2017", | ||
"esnext.asynciterable", | ||
"scripthost" | ||
"scripthost", | ||
"es2020" | ||
], | ||
"module": "esnext", | ||
"target": "es2017" | ||
"target": "es2020" | ||
}, | ||
"files": ["./definitions/images.d.ts", "./definitions/styles.d.ts"] | ||
} |
{ | ||
"name": "@shopify/typescript-configs", | ||
"version": "4.0.0", | ||
"version": "5.0.0", | ||
"license": "MIT", | ||
@@ -19,3 +19,4 @@ "description": "A set of typescript configuration files that can be extended.", | ||
}, | ||
"homepage": "https://github.com/Shopify/web-configs/blob/main/packages/typescript-configs/README.md" | ||
"homepage": "https://github.com/Shopify/web-configs/blob/main/packages/typescript-configs/README.md", | ||
"gitHead": "ffadc8808cc0f3df4005f8441cc86c399a782675" | ||
} |
7579
10
77