Skip to content

Commit 23b0636

Browse files
authored
Merge pull request feathersjs-ecosystem#484 from j2L4e/fix-ci
add asynciterable to tsconfig and bump ts version
2 parents 603331f + e7e8147 commit 23b0636

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// TypeScript Version: 2.3
1+
// TypeScript Version: 2.6
22

33
import { Hook, HookContext, Params, Query, Paginated, Application } from '@feathersjs/feathers';
44
import * as ajv from 'ajv';

types/tsconfig.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"lib": ["es6"],
4+
"lib": [
5+
"es6",
6+
"esnext.asynciterable"
7+
],
58
"noImplicitAny": true,
69
"noImplicitThis": true,
710
"strictNullChecks": true,
@@ -14,4 +17,4 @@
1417
]
1518
}
1619
}
17-
}
20+
}

0 commit comments

Comments
 (0)