diff --git a/package.json b/package.json index dc58b7f..54fd698 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ }, "scripts": { "fmt": "rome format --write src/index.ts tests/ jest.config.ts tsconfig.json package.json", - "lint": "rome check src/index.ts tests/ jest.config.ts tsconfig.json package.json", + "lint": "rome check src/index.ts tests/ jest.config.ts tsconfig.json package.json && tsc", "test": "RUST_LOG= jest --runInBand", "tsc": "tsc", "bumpPatch": "yarn version --no-git-tag-version --patch", diff --git a/tsconfig.json b/tsconfig.json index b305c4e..a21a190 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,8 @@ "paths": { "anchor-bankrun": ["./"] }, - "resolveJsonModule": true + "resolveJsonModule": true, + "skipLibCheck": true }, "include": ["./src/**/*"] }