From d2d81d9458263132bf1c48771a221c68ec0769e0 Mon Sep 17 00:00:00 2001 From: enrique Date: Tue, 16 Jul 2024 13:06:38 +0200 Subject: [PATCH] fix: value initialization --- package.json | 2 +- src/nevermined/NvmApp.ts | 2 +- tsconfig.json | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index ca88d3aa2..6c7f0ab0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nevermined-io/sdk", - "version": "3.0.18-rc1", + "version": "3.0.18-rc2", "description": "Javascript SDK for connecting with Nevermined Data Platform ", "main": "./dist/node/sdk.js", "typings": "./dist/node/sdk.d.ts", diff --git a/src/nevermined/NvmApp.ts b/src/nevermined/NvmApp.ts index 9b15282c3..bd5f49850 100644 --- a/src/nevermined/NvmApp.ts +++ b/src/nevermined/NvmApp.ts @@ -105,7 +105,7 @@ export class NvmApp { */ public static async getInstance( appEnv: NVMAppEnvironments, - config?: Partial, + config?: Partial, ): Promise { const defaultEnvConfig = this.getConfigFromTagName(appEnv) const mergedConfig = config ? { ...defaultEnvConfig, ...config } : defaultEnvConfig diff --git a/tsconfig.json b/tsconfig.json index 5c14230b0..16c81f167 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,6 @@ { "compilerOptions": { "strict": true, - // "isolatedModules": true, "useDefineForClassFields": true, // "noImplicitReturns": true, // Not enabled by default in `strict` mode. // "useUnknownInCatchVariables": true, // TODO: This would normally be enabled in `strict` mode but would require some adjustments to the codebase.