Skip to content

Commit

Permalink
Merge pull request #146 from Cyberbeni/tsconfig-update
Browse files Browse the repository at this point in the history
Update tsconfig with recommended values
  • Loading branch information
Cyberbeni authored Oct 13, 2024
2 parents 099d640 + d0ffacd commit e5b5d82
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "install-swift-tool",
"version": "0.0.0",
"description": "Install swift based tools inside a GitHub Action.",
"repository": {
"type": "git",
Expand Down
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"compilerOptions": {
// https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
// Build:
"incremental": false,
"target": "es6",
"module": "commonjs",
"lib": ["es2023"],
"module": "node16",
"target": "es2022",
"rootDir": "./src",
"esModuleInterop": true,
"declaration": false,
Expand Down

0 comments on commit e5b5d82

Please sign in to comment.