We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f6410 commit 0c2c569Copy full SHA for 0c2c569
governance/pyth_staking_sdk/package.json
@@ -1,11 +1,9 @@
1
{
2
"name": "@pythnetwork/staking-sdk",
3
- "version": "0.0.0",
+ "version": "0.0.1",
4
"description": "Pyth staking SDK",
5
- "type": "module",
6
- "exports": {
7
- ".": "./src/index.ts"
8
- },
+ "main": "src/index.ts",
+ "types": "src/index.d.ts",
9
"publishConfig": {
10
"access": "public"
11
},
governance/pyth_staking_sdk/tsconfig.json
@@ -7,11 +7,12 @@
"baseUrl": "./",
"noEmit": false,
"target": "ESNext",
- "module": "ESNext",
+ "module": "CommonJS",
"moduleResolution": "Node",
12
"declaration": true,
13
"composite": true,
14
"declarationMap": true,
15
- "esModuleInterop": true
+ "esModuleInterop": true,
16
+ "verbatimModuleSyntax": false
17
}
18
0 commit comments