Skip to content

Commit 6ab12c0

Browse files
committed
0.9.0 - Update to TypeScript 4.0.
1 parent 4ab2b8e commit 6ab12c0

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/
44

55

66
--------
7-
### [0.8.1](N/A) - 2020-08-12
7+
### [0.9.0](N/A) - 2020-09-05
8+
#### Changed
9+
* Update to TypeScript 4.0
10+
11+
12+
--------
13+
### [0.8.1](https://github.com/TeamworkGuy2/lokijs-collections-syncing/commit/4ab2b8ea48a7740c64f3d1e4375a5aaedd0734c5) - 2020-08-12
814
#### Changed
915
* Update `lokijs-collections` dependency from github URL to new npm version number
1016

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lokijs-collections-syncing",
3-
"version": "0.8.1",
3+
"version": "0.9.0",
44
"description": "lokijs-collections syncing to and from a remote data source",
55
"author": "TeamworkGuy2",
66
"homepage": "https://github.com/TeamworkGuy2/lokijs-collections-syncing",
@@ -11,15 +11,15 @@
1111
},
1212
"dependencies": {
1313
"@types/q": "~1.5.1",
14-
"lokijs-collections": "~0.26.1",
15-
"ts-promises": "~0.5.2"
14+
"lokijs-collections": "~0.27.0",
15+
"ts-promises": "~0.6.0"
1616
},
1717
"devDependencies": {
1818
"@types/chai": "~4.2.4",
1919
"@types/mocha": "~5.2.7",
2020
"chai": "~4.2.0",
2121
"mocha": "~5.2.0",
22-
"typescript": "~3.7.2"
22+
"typescript": "~4.0.2"
2323
},
2424
"scripts": {
2525
"test": "node node_modules/mocha/bin/_mocha -u tdd --recursive",

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
"lib": [ "es2017" ],
66
"module": "commonjs",
77
"noEmitOnError": true,
8+
"noImplicitAny": true,
89
"noImplicitReturns": true,
10+
"noImplicitThis": true,
911
"removeComments": false,
1012
"sourceMap": false,
1113
"strict": true,

0 commit comments

Comments
 (0)