Skip to content

Commit

Permalink
fix: value initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
eruizgar91 committed Jul 16, 2024
1 parent a034641 commit d2d81d9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/nevermined/NvmApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class NvmApp {
*/
public static async getInstance(
appEnv: NVMAppEnvironments,
config?: Partial<NeverminedOptions>,
config?: Partial<NeverminedOptions | NeverminedAppOptions>,
): Promise<NvmApp> {
const defaultEnvConfig = this.getConfigFromTagName(appEnv)
const mergedConfig = config ? { ...defaultEnvConfig, ...config } : defaultEnvConfig
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit d2d81d9

Please sign in to comment.