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 a0b9f4d commit 9a10e13Copy full SHA for 9a10e13
.github/workflows/package-js-tests.yml
@@ -33,6 +33,9 @@ jobs:
33
with:
34
path: node_modules
35
key: v5-package-node-modules-cache-${{ hashFiles('yarn.lock') }}
36
+ - name: run conversion script
37
+ if: matrix.versions == 'oldest'
38
+ run: script/convert
39
- name: Install Node modules with Yarn for renderer package
40
run: |
41
yarn install --no-progress --no-emoji
tsconfig.json
@@ -7,9 +7,10 @@
7
"module": "CommonJS",
8
"noImplicitAny": true,
9
"outDir": "node_package/lib",
10
+ "skipLibCheck": true,
11
"strict": true,
12
"incremental": true,
13
"target": "es5"
14
},
- "include": ["node_package/src/**/*"]
15
+ "include": ["node_package/src/**/*", "knip.ts"]
16
}
0 commit comments