Skip to content

Commit

Permalink
Fix TypeScript file extension warning
Browse files Browse the repository at this point in the history
Fix the following warning from TypeScript: `Relative import paths
need explicit file extensions in ECMAScript imports when
'--moduleResolution' is 'node16' or 'nodenext'. Did you mean
'./paths.js'?`
  • Loading branch information
lpsinger committed Nov 6, 2024
1 parent 422b0ea commit ca89311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import { join } from 'path'
import { exists } from './paths'
import { exists } from './paths.js'

export const deploy = {
async start({
Expand Down

0 comments on commit ca89311

Please sign in to comment.