Skip to content

Commit

Permalink
Update the SDK tsconfig
Browse files Browse the repository at this point in the history
To be able to use the sdk in our dapp.
  • Loading branch information
r-czajkowski committed Jan 24, 2024
1 parent 63734da commit 1042f8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sdk/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"module": "ES2022",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"strict": true,
"rootDirs": ["src", "test"],
"esModuleInterop": true,
"resolveJsonModule": true
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"skipLibCheck": true
},
"include": ["src", "test", "jest.config.js"]
}

0 comments on commit 1042f8c

Please sign in to comment.