mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
27 lines
558 B
JavaScript
27 lines
558 B
JavaScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import { logger } from '@storybook/node-logger';
|
|
|
|
function resolveTsConfig(tsConfigPath) {
|
|
if (!fs.existsSync(tsConfigPath)) {
|
|
return null;
|
|
}
|
|
|
|
logger.info('=> Found custom tsconfig.json');
|
|
|
|
return tsConfigPath;
|
|
}
|
|
|
|
export default function(configDir) {
|
|
const tsLoaderOptions = {
|
|
transpileOnly: true,
|
|
};
|
|
const configFilePath = resolveTsConfig(path.resolve(configDir, 'tsconfig.json'));
|
|
|
|
if (configFilePath) {
|
|
tsLoaderOptions.configFile = configFilePath;
|
|
}
|
|
|
|
return tsLoaderOptions;
|
|
}
|