misc: set noImplicitAny to false

This commit is contained in:
Sandeep P S 2023-11-18 16:11:00 +05:30
parent cd9f4c3450
commit 2e6fbc698f
1 changed files with 5 additions and 18 deletions

View File

@ -13,24 +13,11 @@
"outDir": "lib",
"inlineSources": false,
"strictNullChecks": false,
"noImplicitAny": true,
"noImplicitAny": false,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection",
"es2015.promise"
]
"typeRoots": ["./node_modules/@types", "./node_modules/@microsoft"],
"types": ["webpack-env"],
"lib": ["es5", "dom", "es2015.collection", "es2015.promise"]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
]
"include": ["src/**/*.ts", "src/**/*.tsx"]
}