From ab9007c3a45b029050eb54e8647aed10e5db1d07 Mon Sep 17 00:00:00 2001 From: Hiroki Osame Date: Wed, 9 Aug 2023 10:11:36 +0900 Subject: [PATCH] fix(TsconfigRaw): `baseUrl` to be string (#3299) --- lib/shared/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/shared/types.ts b/lib/shared/types.ts index 872cb027a21..d938a6df626 100644 --- a/lib/shared/types.ts +++ b/lib/shared/types.ts @@ -91,7 +91,7 @@ interface CommonOptions { export interface TsconfigRaw { compilerOptions?: { alwaysStrict?: boolean - baseUrl?: boolean + baseUrl?: string experimentalDecorators?: boolean importsNotUsedAsValues?: 'remove' | 'preserve' | 'error' jsx?: 'preserve' | 'react-native' | 'react' | 'react-jsx' | 'react-jsxdev'