Swapped tslint to eslint and fixed files

This commit is contained in:
Arwid Thornström
2023-02-03 12:48:29 +01:00
committed by GitHub
parent 258e0b2dde
commit a7da247cf4
15 changed files with 1136 additions and 386 deletions
+4 -1
View File
@@ -1,5 +1,8 @@
{
"compilerOptions": {
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"strictPropertyInitialization": false,
"allowSyntheticDefaultImports": false,
"experimentalDecorators": true,
"lib": [
@@ -19,7 +22,7 @@
"inlineSourceMap": true,
"outDir": "build",
"strict": false,
"target": "es5",
"target": "es2020",
"declaration": true,
"declarationDir": "build/types"
},