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

Commit

Permalink
fix: Fixed bug with relative imports when transpiled to js
Browse files Browse the repository at this point in the history
  • Loading branch information
CHR-onicles committed Aug 19, 2022
1 parent e532021 commit b535866
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// bot to function correctly
// --------------------------------------------------

import { IClass, IExamTimetable } from "src/types";
import { IClass, IExamTimetable } from "../types";

/**
* Source code for the bot, hosted on Github.
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"esModuleInterop": true,
"downlevelIteration": true,
"noEmitOnError": true,
"skipDefaultLibCheck": true,
"skipDefaultLibCheck": true
},
"exclude": ["./dist", "./node_modules"],
"include": ["./src"]
Expand Down

0 comments on commit b535866

Please sign in to comment.