From de44be741d844555ab077ffecb45faa03da38f97 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 23 Jun 2021 15:45:34 +0200 Subject: [PATCH] fix(core): update --- ts/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ts/index.ts b/ts/index.ts index f6be32b..7044a65 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -8,6 +8,7 @@ const defaultTsNodeOptions: tsNode.CreateOptions = { target: 'es2017', // Script Target should be a string -> 2 is for ES2015 experimentalDecorators: true, esModuleInterop: true, + strictNullChecks: false, } as CompilerOptions, skipIgnore: true, }; @@ -34,8 +35,6 @@ export const runCli = async () => { const pathToTsFile = process.argv[2]; const pathToLoad = path.join(process.cwd(), pathToTsFile); - console.log(process.argv); process.argv.pop(); - console.log(process.argv); import(pathToLoad); };