Skip to content

Commit

Permalink
Bump ncc
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Nov 14, 2022
1 parent 01cae94 commit dfea670
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 16 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vercel/ncc": "^0.33.4",
"@vercel/ncc": "^0.34.0",
"ava": "^5.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
Expand All @@ -43,4 +43,4 @@
"compile": false
}
}
}
}
21 changes: 14 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,25 @@
"compilerOptions": {
"outDir": "./lib",
"rootDir": "./src",
"module": "commonjs",
"target": "esnext",
"lib": ["es2015", "es2017", "es2020.string"],
"module": "node16",
"target": "es2021",
"lib": [
"es2021"
],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true
"preserveConstEnums": true,
"moduleResolution": "node"
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"],
}
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
],
}

0 comments on commit dfea670

Please sign in to comment.