mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
19 lines
597 B
TypeScript
19 lines
597 B
TypeScript
import { getTSFilesAndConfig, getTSProgramAndHost, getTSDiagnostics } from './helpers/typescript';
|
|
|
|
const tsconfigPath = 'tsconfig.json';
|
|
|
|
const { options, fileNames } = getTSFilesAndConfig(tsconfigPath);
|
|
const { program, host } = getTSProgramAndHost(fileNames, options);
|
|
|
|
const tsDiagnostics = getTSDiagnostics(program, process.cwd(), host);
|
|
if (tsDiagnostics.length > 0) {
|
|
console.log(tsDiagnostics);
|
|
process.exit(1);
|
|
} else {
|
|
console.log('no type errors');
|
|
}
|
|
|
|
// TODO, add more package checks here, like:
|
|
// - check for missing dependencies/peerDependencies
|
|
// - check for unused exports
|