Skip to content

Commit c5ca482

Browse files
committed
fix: incorrect type in nodemon
1 parent b8342e6 commit c5ca482

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

apps/api/scripts/dev.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env tsx
22

3-
import nodemon from 'nodemon';
3+
import _nodemon, { type Nodemon, type NodemonSettings } from 'nodemon';
4+
5+
const nodemon = _nodemon as any as (settings: NodemonSettings) => Nodemon;
46

57
import { clean, outfile, watch } from './build.js';
68

0 commit comments

Comments
 (0)