Initial commit (from f5274cbdce4ae7c9e4b937dcdf95ac70ae436d5f)

This commit is contained in:
anaarmas 2020-04-28 16:46:47 +02:00
commit 28ccc3db2d
13974 changed files with 2618436 additions and 0 deletions

25
node_modules/tslint/tslint-vscode.json generated vendored Normal file
View file

@ -0,0 +1,25 @@
{
"extends": "./tslint.json",
// disable all type checking rules so the vscode plugin can run
"rules": {
"await-promise": false,
"deprecation": false,
"match-default-export-name": false,
"no-boolean-literal-compare": false,
"no-floating-promises": false,
"no-for-in-array": false,
"no-implicit-dependencies": {
"options": ["dev"]
},
"no-inferred-empty-object-type": false,
"no-restricted-globals": false,
"no-unnecessary-type-assertion": false,
"no-unsafe-any": false,
"prefer-readonly": false,
"promise-function-async": false,
"restrict-plus-operands": false,
"return-undefined": false,
"strict-boolean-expressions": false,
"use-default-type-parameter": false
}
}