diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6cd9a23..6fe9fbd 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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 diff --git a/run.sh b/run.sh old mode 100644 new mode 100755 diff --git a/tsconfig.json b/tsconfig.json index 8b08d45..d129590 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,10 @@ { - "compilerOptions": { - "strict": true - }, - "include": ["src"] + "compilerOptions": { + "target": "ES2022", + "module": "Node16", + "lib": ["ES2022"], + "strict": true, + "noEmit": true + }, + "include": ["src"] }