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 4787bdc commit 1ce4163Copy full SHA for 1ce4163
.github/workflows/ci.yml
@@ -97,6 +97,10 @@ jobs:
97
if: matrix.ts_version != 'JS'
98
run: yarn add -D typescript@"${{ matrix.ts_version }}" --ignore-engines
99
100
+ - name: Remove incompatible settings for ts 3.4.1
101
+ if: matrix.ts_version == '3.4.1'
102
+ run: node -e 'const fs = require("fs"); const tsconfig = require("./tsconfig.base.json"); delete tsconfig.compilerOptions.exactOptionalPropertyTypes; fs.writeFileSync("./tsconfig.base.json", JSON.stringify(tsconfig));'
103
+
104
- name: Run Tests
105
run: yarn test
106
env:
0 commit comments