Skip to content

Commit

Permalink
Fix problem no detect types import utilTiempo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tutitoos committed Jul 23, 2023
1 parent 0f05560 commit 2228916
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only --poll src/index.ts",
"test": "ts-node-dev --respawn --transpile-only --poll src/tests.ts",
"test": "npm run build && node dist/tests.js",
"lint": "npm run lint:rome && npm run lint:eslint",
"lint:rome": "rome check src",
"lint:eslint": "eslint --ignore-path .gitignore . --max-warnings 0",
Expand Down
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import * as utilTiempo from "./lib/index";

// Module.exports = utilTiempo;

module.exports = utilTiempo;
export default utilTiempo;
export * from "./lib/index";

0 comments on commit 2228916

Please sign in to comment.