Skip to content

Commit 1e7071f

Browse files
authored
Merge pull request #45 from TypeStrong/simplify2
Update repros repo to a more modern setup
2 parents 77e724b + e7106a0 commit 1e7071f

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 16
20+
node-version: 20
2121

2222
- name: Run
2323
run: chmod +x run.sh && ./run.sh

run.sh

100644100755
File mode changed.

tsconfig.json

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
2-
"compilerOptions": {
3-
"strict": true
4-
},
5-
"include": ["src"]
2+
"compilerOptions": {
3+
"target": "ES2022",
4+
"module": "Node16",
5+
"lib": ["ES2022"],
6+
"strict": true,
7+
"noEmit": true
8+
},
9+
"include": ["src"]
610
}

0 commit comments

Comments
 (0)