Skip to content

Commit

Permalink
chore: replace deprecated @tsconfig/node16-strictest-esm with other…
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Nov 5, 2024
1 parent 6336b61 commit 8689ff4
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 14 deletions.
35 changes: 25 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
"prepublishOnly": "npm run posttest"
},
"devDependencies": {
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@tsconfig/node16": "^16.1.3",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@vitest/coverage-v8": "^2.0.5",
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"extends": "@tsconfig/node16-strictest-esm/tsconfig.json",
"extends": ["@tsconfig/strictest/tsconfig", "@tsconfig/node16/tsconfig"],
"compilerOptions": {
"module": "es2022",
"moduleResolution": "node10",
"declaration": true,
"outDir": "./dist/",
"ignoreDeprecations": "5.0"
"outDir": "./dist/"
},
"files": ["index.ts"]
}

0 comments on commit 8689ff4

Please sign in to comment.