Skip to content

Commit

Permalink
Merge pull request #45 from TypeStrong/simplify2
Browse files Browse the repository at this point in the history
Update repros repo to a more modern setup
  • Loading branch information
Gerrit0 authored Aug 5, 2024
2 parents 77e724b + e7106a0 commit 1e7071f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- name: Run
run: chmod +x run.sh && ./run.sh
Expand Down
Empty file modified run.sh
100644 → 100755
Empty file.
12 changes: 8 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"compilerOptions": {
"strict": true
},
"include": ["src"]
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"lib": ["ES2022"],
"strict": true,
"noEmit": true
},
"include": ["src"]
}

0 comments on commit 1e7071f

Please sign in to comment.