@temir.ra/create-ts-lib 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Version 0
2
2
 
3
+ ## 0.8.1
4
+
5
+ 1. Added `DOM` to the `lib` array in the generated `tsconfig.json`.
6
+
3
7
  ## 0.8.0
4
8
 
5
9
  1. Updated wording in the Publish section of the generated README.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temir.ra/create-ts-lib",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "A template for a distributable TypeScript library package.",
5
5
  "author": "temir.ra",
6
6
  "license": "MIT",
@@ -3,7 +3,8 @@
3
3
  "target": "ESNext",
4
4
  "module": "ESNext",
5
5
  "lib": [
6
- "ESNext"
6
+ "ESNext",
7
+ "DOM"
7
8
  ],
8
9
  "moduleResolution": "bundler",
9
10
  "strict": true,