diff --git a/index.ts b/index.ts index e4599fc..3fea27b 100644 --- a/index.ts +++ b/index.ts @@ -2,7 +2,7 @@ import { exit } from 'node:process'; import { error, getInput, warning } from '@actions/core'; import { context } from '@actions/github'; -import { type RestEndpointMethodTypes } from '@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types'; +import type { RestEndpointMethodTypes } from '@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types'; import { Octokit } from '@octokit/rest'; import fetch from 'node-fetch'; diff --git a/tsconfig.json b/tsconfig.json index 284c35a..242a91e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,5 @@ "target": "ES2022", "strict": true }, - "exclude": [ - "node_modules" - ] + "exclude": ["node_modules"] }