fix compilation errors

This commit is contained in:
Adhiraj Singh
2021-09-25 18:04:26 +05:30
parent 671ea3e097
commit fff2e58997
6 changed files with 46 additions and 42 deletions

View File

@@ -3,7 +3,7 @@
"target": "es2018",
"module": "commonjs",
"experimentalDecorators": true,
"allowJs": true,
"allowJs": false,
"checkJs": false,
"outDir": "lib",
"strict": false,
@@ -14,6 +14,6 @@
"declaration": true,
"lib": ["es2020", "esnext.array"]
},
"include": ["src/**/*.ts"],
"include": ["./src/**/*.ts"],
"exclude": ["node_modules", "src/Tests/*", "src/Binary/GenerateStatics.ts"]
}