We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 77e724b + e7106a0 commit 1e7071fCopy full SHA for 1e7071f
.github/workflows/main.yaml
@@ -17,7 +17,7 @@ jobs:
17
- name: Setup Node
18
uses: actions/setup-node@v3
19
with:
20
- node-version: 16
+ node-version: 20
21
22
- name: Run
23
run: chmod +x run.sh && ./run.sh
run.sh
100644
100755
tsconfig.json
@@ -1,6 +1,10 @@
1
{
2
- "compilerOptions": {
3
- "strict": true
4
- },
5
- "include": ["src"]
+ "compilerOptions": {
+ "target": "ES2022",
+ "module": "Node16",
+ "lib": ["ES2022"],
6
+ "strict": true,
7
+ "noEmit": true
8
+ },
9
+ "include": ["src"]
10
}
0 commit comments