We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c4fee3 + f9ea7af commit cca3f59Copy full SHA for cca3f59
3 files changed
.github/workflows/push.yml
@@ -19,7 +19,7 @@ jobs:
19
- name: 'Setup Node.JS'
20
uses: actions/setup-node@v3
21
with:
22
- node-version: '18'
+ node-version: '18.17'
23
24
- name: 'Cache dependencies'
25
uses: buildjet/cache@v3
package.json
@@ -36,5 +36,8 @@
36
},
37
"publishConfig": {
38
"access": "public"
39
+ },
40
+ "volta": {
41
+ "node": "18.17.0"
42
}
43
tsconfig.json
@@ -1,7 +1,7 @@
1
{
2
"compilerOptions": {
3
// Output Options
4
- "target": "es2015",
+ "target": "es2022",
5
"module": "commonjs",
6
"jsx": "react",
7
"noEmitOnError": true,
@@ -16,7 +16,7 @@
16
"incremental": true,
17
18
// Type-Checking Options
- "lib": ["esnext"],
+ "lib": ["es2022"],
"strict": true,
"skipLibCheck": true,
"strictPropertyInitialization": false,
0 commit comments