fix(core): update

This commit is contained in:
Philipp Kunz 2022-03-14 21:46:41 +01:00
parent 4925809030
commit 832664b667
2 changed files with 4 additions and 1 deletions

View File

@ -12,7 +12,7 @@
"scripts": {
"test": "tsrun test/test.ts",
"testCustom": "node cli.ts.js custom ts_web",
"build": "node cli.ts.js --web"
"build": "node cli.ts.js --web --allowimplicitany"
},
"repository": {
"type": "git",

View File

@ -49,6 +49,9 @@ export const mergeCompilerOptions = (
...argvArg && argvArg.skiplibcheck ? {
skipLibCheck: true
} : {},
...argvArg && argvArg.allowimplicitany ? {
noImplicitAny: false
} : {},
};
return mergedOptions;