Simplify type gen

master
Jordan Pittman 2023-10-27 11:57:36 -04:00
parent 3df69994c4
commit a13708b995
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ let build = await esbuild.context({
// Call the tsc command to generate the types
spawnSync(
'tsc',
['--emitDeclarationOnly', '--outDir', path.resolve(__dirname, '../dist')],
['--emitDeclarationOnly', '--outFile', path.resolve(__dirname, '../dist/index.d.ts')],
{
stdio: 'inherit',
}