UNPKG

487 BTypeScriptView Raw
1/*
2 * While in local development, make sure you've run `pnpm run build` first.
3 */
4import { concurrently } from './dist/src/index.js';
5
6export * from './dist/src/index.js';
7// @ts-expect-error ignore the usage of `export =` along with `export default`.
8// This is seemingly fine, but the file needs to be included in the TS project, which can't be done
9// due to importing from `dist`. See https://stackoverflow.com/q/42609768/2083599
10export = concurrently;
11export default concurrently;