Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrieh committed May 1, 2024
1 parent faa6014 commit ad9ec94
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@greymass/abi2core": "^2.0.1",
"@size-limit/preset-big-lib": "^11.1.2",
"@types/bun": "^1.1.1",
"typescript": "^5.4.3"
"typescript": "5.4.2"
},
"dependencies": {
"@wharfkit/antelope": "^1.0.7",
Expand Down
13 changes: 7 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
/// <reference no-default-lib="true" />
{
"compilerOptions": {
"rootDir": "./",
"rootDir": "./src",
"downlevelIteration": true,
"esModuleInterop": true,
"esModuleInterop": false,
"importHelpers": true,
"experimentalDecorators": true,
"isolatedModules": true,
"lib": ["dom", "es2020"],
"module": "ESNext",
"lib": ["DOM", "ES2020"],
"moduleResolution": "node",
"module": "ESNext",
"sourceMap": true,
"declaration": true,
"strict": true,
"target": "ESNext",
"target": "ES2021",
"outDir": "dist",
"skipLibCheck": true
},
"exclude": ["node_modules/**/*", "**/*.test.ts"],
"exclude": ["node_modules/**/*", "**/*.test.ts",],
"include": ["src/**/*", "abis/**/*", "test/testHelper.ts"]
}

0 comments on commit ad9ec94

Please sign in to comment.