diff --git a/.github/workflows/tsCheck.yml b/.github/workflows/tsCheck.yml index b0c9620d96ac9..cadc01f624681 100644 --- a/.github/workflows/tsCheck.yml +++ b/.github/workflows/tsCheck.yml @@ -63,7 +63,7 @@ jobs: echo 'Files removed: ${{steps.files.outputs.files_deleted}}' - name: Check typescript errors - uses: chefjackson/action-check-typescript@v1.1.2 + uses: chefjackson/action-check-typescript@v1.1.3 if: steps.files.outputs.changed == 'true' env: NODE_OPTIONS: '--max_old_space_size=4096' diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 1a174b282b606..583acf3014c6f 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -13,12 +13,6 @@ "@pancakeswap/uikit/*": ["../../packages/uikit/src/*"] } }, - "exclude": [ - "**/node_modules", - "**/.*/", - // This is the path to the generated types from removed typechain - "**/config/abi/types/", - "**/abis/types/*.ts" - ], + "exclude": ["**/node_modules", "**/.*/", "**/config/abi/types/", "**/abis/types/*.ts"], "include": ["next-env.d.ts", "./src/**/*.ts", "./src/**/*.tsx"] }