Skip to content
This repository was archived by the owner on Sep 25, 2023. It is now read-only.

Commit e4c1656

Browse files
committed
fix: fixed typescript imports with esmodule interop
1 parent 2ad1428 commit e4c1656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Request, Response } from 'express';
2-
import { default as chalk } from 'chalk';
2+
import * as chalk from 'chalk';
33
import { parse } from 'url';
4-
import path from 'path';
4+
import * as path from 'path';
55
import memoize from 'fast-memoize';
66
import { getTenantConfig } from './config';
77
import { Config } from './config/config.d';

0 commit comments

Comments
 (0)