fbredius/storybook

View on GitHub
lib/builder-webpack4/src/preview/useBaseTsSupport.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Returns true if the framework can use the base TS config.
 * @param {string} framework
 */

export const useBaseTsSupport = (framework: string) => {
  // These packages both have their own TS implementation.
  return !['vue', 'angular'].includes(framework);
};