Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +02:00

27 lines
709 B
TypeScript

import fs from 'fs';
import path from 'path';
import { logger } from '@storybook/node-logger';
import { Options } from 'ts-loader';
function resolveTsConfig(tsConfigPath: string): string | undefined {
if (fs.existsSync(tsConfigPath)) {
logger.info('=> Found custom tsconfig.json');
return tsConfigPath;
}
return undefined;
}
export default function (configDir: string) {
const tsLoaderOptions: Partial<Options> = {
transpileOnly: true,
compilerOptions: {
emitDecoratorMetadata: true,
},
};
const configFilePath = resolveTsConfig(path.resolve(configDir, 'tsconfig.json'));
if (configFilePath) tsLoaderOptions.configFile = configFilePath;
return tsLoaderOptions;
}