Skip to content

Commit

Permalink
fix: correctly check for isFullStatic
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jul 14, 2020
1 parent c39773f commit db87441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export const globalContext = '<%= options.globalContext %>'.includes('options')

export const isFullStatic = '<%= options.isFullStatic %>'.includes('options')
? false
: (('<%= options.isFullStatic %>' as unknown) as boolean)
: ('<%= options.isFullStatic %>' as unknown) === 'true'

0 comments on commit db87441

Please sign in to comment.