Skip to content

Commit 65afef7

Browse files
committed
update packages
1 parent b79345e commit 65afef7

File tree

9 files changed

+13837
-2249
lines changed

9 files changed

+13837
-2249
lines changed

.eslintrc.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
module.exports = {
22
extends: 'standard-with-typescript',
33
parserOptions: {
4-
project: 'tsconfig.dev.json'
4+
project: 'tsconfig.json'
55
},
66
rules: {
77
'@typescript-eslint/explicit-function-return-type': 'off',
88
'@typescript-eslint/strict-boolean-expressions': 'off',
9-
'@typescript-eslint/restrict-template-expressions': 'off'
9+
'@typescript-eslint/restrict-template-expressions': 'off',
10+
'@typescript-eslint/no-non-null-assertion': 'off'
1011
}
1112
}

.mocharc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
module.exports = {
22
file: ['tests/setup.ts'],
3-
exit: true
3+
exit: true,
4+
require: ['ts-node/register'],
5+
extension: ['ts']
46
}

0 commit comments

Comments
 (0)