Skip to content

Commit 615edf6

Browse files
chore(deps): update dependency @octokit/tsconfig to v2 (#308)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@octokit/tsconfig](https://togithub.com/octokit/tsconfig) | [`^1.0.2` -> `^2.0.0`](https://renovatebot.com/diffs/npm/@octokit%2ftsconfig/1.0.2/2.0.0) | [![age](https://badges.renovateapi.com/packages/npm/@octokit%2ftsconfig/2.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@octokit%2ftsconfig/2.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@octokit%2ftsconfig/2.0.0/compatibility-slim/1.0.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@octokit%2ftsconfig/2.0.0/confidence-slim/1.0.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>octokit/tsconfig</summary> ### [`v2.0.0`](https://togithub.com/octokit/tsconfig/releases/tag/v2.0.0) [Compare Source](https://togithub.com/octokit/tsconfig/compare/v1.0.2...v2.0.0) ##### Features - add `verbatimModuleSyntax` compiler option ([#&#8203;15](https://togithub.com/octokit/tsconfig/issues/15)) ([6341002](https://togithub.com/octokit/tsconfig/commit/63410020586909187c451e9a2dd7a3aff50c12f2)) ##### BREAKING CHANGES - this will throw errors during Typescript compilation when types are not imported using the `import type` keywords. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/octokit/rest.js). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Keegan Campbell <[email protected]>
1 parent 393ca57 commit 615edf6

File tree

4 files changed

+54
-10
lines changed

4 files changed

+54
-10
lines changed

package-lock.json

+33-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@octokit/auth-app": "^4.0.13",
4343
"@octokit/fixtures-server": "^7.0.0",
4444
"@octokit/request": "^6.2.5",
45-
"@octokit/tsconfig": "^1.0.2",
45+
"@octokit/tsconfig": "^2.0.0",
4646
"@types/jest": "^29.0.0",
4747
"@types/node": "^18.0.0",
4848
"esbuild": "^0.18.0",
@@ -67,7 +67,14 @@
6767
},
6868
"license": "MIT",
6969
"jest": {
70-
"preset": "ts-jest",
70+
"transform": {
71+
"^.+\\.(ts|tsx)$": [
72+
"ts-jest",
73+
{
74+
"tsconfig": "test/tsconfig.test.json"
75+
}
76+
]
77+
},
7178
"testPathIgnorePatterns": [
7279
"/docs/"
7380
],

test/tsconfig.test.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../tsconfig.json",
3+
"compilerOptions": {
4+
"emitDeclarationOnly": false,
5+
"noEmit": true,
6+
"verbatimModuleSyntax": false
7+
},
8+
"include": ["src/**/*"]
9+
}

tsconfig.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@
77
"emitDeclarationOnly": true,
88
"sourceMap": true
99
},
10-
"include": ["src/**/*"]
10+
"include": [
11+
"src/**/*"
12+
]
1113
}

0 commit comments

Comments
 (0)