1
0
Fork 0

fix(rules/tsconfig): correctly enforce lib/target for esnext

This commit is contained in:
ssube 2019-06-30 17:48:45 -05:00
parent d11f3d68e0
commit 62d58fe3a9
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ rules:
check:
not:
anyOf:
- required: [alwaysStrict]
- required: [noImplicitAny]
- required: [noImplicitThis]
- required: [alwaysStrict]
- required: [strictBindCallApply]
- required: [strictNullChecks]
- required: [strictFunctionTypes]
@ -57,7 +57,7 @@ rules:
type: array
target:
type: string
pattern: "^es[0-9]+$"
pattern: "^es([0-9]+|next)$"
check:
allOf: