File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ export class TSConfckCache<T> {
296296 hasConfigPath(dir : string , configName ? : string | undefined ): boolean ;
297297 /**
298298 * get cached closest tsconfig for files in dir
299- * @throws if cached value is an error
299+ * @throws {unknown} if cached value is an error
300300 */
301301 getConfigPath(dir : string , configName ? : string | undefined ): Promise <string | null > | string | null ;
302302 /**
@@ -305,7 +305,7 @@ export class TSConfckCache<T> {
305305 hasParseResult(file : string ): boolean ;
306306 /**
307307 * get parsed tsconfig for file
308- * @throws if cached value is an error
308+ * @throws {unknown} if cached value is an error
309309 */
310310 getParseResult(file : string ): Promise <T > | T ;
311311}
Original file line number Diff line number Diff line change 2222 "devDependencies" : {
2323 "@changesets/cli" : " ^2.27.1" ,
2424 "@svitejs/changesets-changelog-github-compact" : " ^1.1.0" ,
25- "dts-buddy" : " ^0.4.1 " ,
26- "esbuild" : " ^0.19.8 " ,
27- "eslint" : " ^8.55 .0" ,
25+ "dts-buddy" : " ^0.4.3 " ,
26+ "esbuild" : " ^0.19.11 " ,
27+ "eslint" : " ^8.56 .0" ,
2828 "eslint-config-prettier" : " ^9.1.0" ,
2929 "eslint-plugin-markdown" : " ^3.0.1" ,
30- "eslint-plugin-n" : " ^16.3 .1" ,
31- "eslint-plugin-prettier" : " ^5.0.1 " ,
30+ "eslint-plugin-n" : " ^16.6 .1" ,
31+ "eslint-plugin-prettier" : " ^5.1.2 " ,
3232 "get-tsconfig" : " ^4.7.2" ,
3333 "husky" : " ^8.0.3" ,
34- "lint-staged" : " ^15.1 .0" ,
34+ "lint-staged" : " ^15.2 .0" ,
3535 "npm-run-all" : " ^4.1.5" ,
36- "prettier" : " ^3.1.0 " ,
37- "publint" : " ^0.2.6 " ,
36+ "prettier" : " ^3.1.1 " ,
37+ "publint" : " ^0.2.7 " ,
3838 "tiny-glob" : " ^0.2.9" ,
3939 "tinybench" : " ^2.5.1" ,
4040 "tsconfck-2" : " npm:tsconfck@^2.1.2" ,
4141 "tsconfck" : " workspace:^" ,
42- "vitest" : " ^1.0 .1"
42+ "vitest" : " ^1.1 .1"
4343 },
4444 "lint-staged" : {
4545 "*.{js,md}" : " eslint --cache --fix" ,
4646 "*" : " prettier --cache --ignore-path .prettierignore --ignore-unknown --write"
4747 },
48- "packageManager" : " pnpm@8.11 .0" ,
48+ "packageManager" : " pnpm@8.14 .0" ,
4949 "engines" : {
5050 "node" : " ^18 || >=20"
5151 }
Original file line number Diff line number Diff line change 4949 },
5050 "devDependencies" : {
5151 "@tsconfig/node18" : " ^18.2.2" ,
52- "@vitest/coverage-v8" : " ^1.0 .1" ,
53- "esbuild" : " ^0.19.8 " ,
52+ "@vitest/coverage-v8" : " ^1.1 .1" ,
53+ "esbuild" : " ^0.19.11 " ,
5454 "tiny-glob" : " ^0.2.9" ,
55- "typescript" : " ^5.3.2 " ,
56- "vitest" : " ^1.0 .1"
55+ "typescript" : " ^5.3.3 " ,
56+ "vitest" : " ^1.1 .1"
5757 },
5858 "engines" : {
5959 "node" : " ^18 || >=20"
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ declare module 'tsconfck' {
4343 hasConfigPath ( dir : string , configName ?: string | undefined ) : boolean ;
4444 /**
4545 * get cached closest tsconfig for files in dir
46- * @throws if cached value is an error
46+ * @throws { unknown } if cached value is an error
4747 */
4848 getConfigPath ( dir : string , configName ?: string | undefined ) : Promise < string | null > | string | null ;
4949 /**
@@ -52,7 +52,7 @@ declare module 'tsconfck' {
5252 hasParseResult ( file : string ) : boolean ;
5353 /**
5454 * get parsed tsconfig for file
55- * @throws if cached value is an error
55+ * @throws { unknown } if cached value is an error
5656 */
5757 getParseResult ( file : string ) : Promise < T > | T ;
5858
You can’t perform that action at this time.
0 commit comments