Skip to content

Commit

Permalink
fix(TsconfigRaw): baseUrl to be string (#3299)
Browse files Browse the repository at this point in the history
  • Loading branch information
privatenumber committed Aug 9, 2023
1 parent 4202ea0 commit ab9007c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit ab9007c

Please sign in to comment.