feat: enable strictNullChecks

feat: enable `noImplicitAny`

chore: remove sync data access

fix loading package data for affected dependencies

chore: properly get alt marketplace data

update patchdb client to allow for emit on undefined values
This commit is contained in:
waterplea
2022-05-26 18:20:31 +03:00
committed by Lucy C
parent 948fb795f2
commit 0390954a85
99 changed files with 674 additions and 535 deletions

View File

@@ -177,8 +177,6 @@ export module Mock {
nullable: true,
masked: false,
copyable: false,
pattern: null,
'pattern-description': null,
warning: 'You may loose all your money by providing your name.',
},
notifications: {
@@ -213,7 +211,6 @@ export module Mock {
name: 'Top Speed',
description: 'The fastest you can possibly run.',
nullable: false,
default: null,
range: '[-1000, 1000]',
integral: false,
units: 'm/s',
@@ -248,7 +245,6 @@ export module Mock {
name: {
type: 'string',
name: 'Name',
description: null,
nullable: false,
masked: false,
copyable: false,
@@ -258,7 +254,6 @@ export module Mock {
email: {
type: 'string',
name: 'Email',
description: null,
nullable: false,
masked: false,
copyable: true,
@@ -1187,7 +1182,6 @@ export module Mock {
type: 'string',
description: 'User first name',
nullable: true,
default: null,
masked: false,
copyable: false,
},
@@ -1210,7 +1204,6 @@ export module Mock {
type: 'number',
description: 'The age of the user',
nullable: true,
default: null,
integral: false,
warning: 'User must be at least 18.',
range: '[18,*)',