Set strictNullChecks to true

This commit is contained in:
dapplion 2020-12-06 11:38:05 +00:00
parent d834657542
commit 25b1fdcb1b
3 changed files with 4 additions and 3 deletions

View File

@ -13,7 +13,7 @@ interface IAggregateSigsTestCase {
}
describeForAllImplementations((bls) => {
describeDirectorySpecTest<IAggregateSigsTestCase, string>(
describeDirectorySpecTest<IAggregateSigsTestCase, string | null>(
"bls/aggregate/small",
path.join(SPEC_TESTS_DIR, "tests/general/phase0/bls/aggregate/small"),
(testCase) => {

View File

@ -16,7 +16,7 @@ interface ISignMessageTestCase {
}
describeForAllImplementations((bls) => {
describeDirectorySpecTest<ISignMessageTestCase, string>(
describeDirectorySpecTest<ISignMessageTestCase, string | null>(
"bls/sign/small",
path.join(SPEC_TESTS_DIR, "tests/general/phase0/bls/sign/small"),
(testCase) => {

View File

@ -8,7 +8,8 @@
"typeRoots": ["./node_modules/@types"],
"declaration": true,
"strict": true,
"strictNullChecks": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"esModuleInterop": true
}
}