diff --git a/src/constants.ts b/src/constants.ts index 163bcad2..3852c5bc 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -4,6 +4,6 @@ const ActionInfo = { Owner: 'peaceiris' } as const; -type ActionInfo = typeof ActionInfo[keyof typeof ActionInfo]; +type ActionInfo = (typeof ActionInfo)[keyof typeof ActionInfo]; export {ActionInfo}; diff --git a/tsconfig.json b/tsconfig.json index 6ae358d4..22f45587 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,7 @@ "noUncheckedIndexedAccess": true, "moduleResolution": "node", "strictPropertyInitialization": false, + "skipLibCheck": true, }, "exclude": ["node_modules", "**/*.test.ts", "dist", "dist_release"] }