We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52e46a5 + b3ab109 commit 3dc0bf6Copy full SHA for 3dc0bf6
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
@@ -40,5 +40,8 @@
40
},
41
"publishConfig": {
42
"access": "public"
43
+ },
44
+ "volta": {
45
+ "node": "18.17.0"
46
}
47
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