Initial commit

This commit is contained in:
2023-03-13 20:44:13 +01:00
commit 211806a1be
19 changed files with 2869 additions and 0 deletions

9
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,9 @@
module.exports = {
extends: 'standard-with-typescript',
parserOptions: {
project: './tsconfig.json'
},
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
}
}