From 9a4eb9e0698b812bca801b8f84a7a809c6a1452b Mon Sep 17 00:00:00 2001 From: Eric King Date: Tue, 30 Jul 2024 08:27:29 -0500 Subject: [PATCH 1/3] chore(lint-stage): updated `@type` --- lint-staged.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lint-staged.config.mjs b/lint-staged.config.mjs index 0536827..4957cd2 100644 --- a/lint-staged.config.mjs +++ b/lint-staged.config.mjs @@ -1,5 +1,5 @@ /** - * @type {Record string | string[] | Promise} + * @type {Record string | string[] | Promise)>} */ export default { '*.{js,cjs,mjs,ts,cts,mts}': ['eslint --fix', 'prettier --write'], From 325ae71653a3a79b6399f6c398be32bbf15a4255 Mon Sep 17 00:00:00 2001 From: Eric King Date: Tue, 30 Jul 2024 08:27:46 -0500 Subject: [PATCH 2/3] chore(tsconfig): added `checkJs` --- tsconfig.configs.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.configs.json b/tsconfig.configs.json index 4b09036..083a742 100644 --- a/tsconfig.configs.json +++ b/tsconfig.configs.json @@ -2,6 +2,7 @@ "extends": "./tsconfig.base.json", "compilerOptions": { "allowJs": true, + "checkJs": true, "noEmit": true, "rootDir": "./", "sourceRoot": "./", From 69d449ff9ecb735b87ec85074243a69f483dd87d Mon Sep 17 00:00:00 2001 From: Eric King Date: Tue, 30 Jul 2024 08:33:03 -0500 Subject: [PATCH 3/3] chore(semantic-release): updated `@type` --- release.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.config.mjs b/release.config.mjs index c889593..050a3b7 100644 --- a/release.config.mjs +++ b/release.config.mjs @@ -1,5 +1,5 @@ /** - * @type {import('semantic-release').GlobalConfig} + * @type {Partial} */ export default { branches: ['main'],