Skip to content

Commit

Permalink
ci: drop node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Apr 17, 2024
1 parent 88be5f7 commit 95bdde8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [16, 18]
node: [18, 20]
fail-fast: false

steps:
Expand Down
10 changes: 6 additions & 4 deletions tsconfig.json
Expand Up @@ -2,15 +2,17 @@
"compilerOptions": {
"target": "esnext",
"lib": ["es2022"],
"module": "esnext",
"moduleResolution": "node",
"moduleDetection": "force",
"module": "preserve",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"types": ["node"],
"strict": true,
"noUnusedLocals": true,
"noEmit": true,
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true
},
"include": ["src", "tests"],
"exclude": ["tests/fixtures"]
"include": ["src", "tests"]
}

0 comments on commit 95bdde8

Please sign in to comment.