Skip to content

Commit

Permalink
Add support for TypeScript with 'none' for module config (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikolofsson authored Apr 1, 2024
1 parent a5dc669 commit c23a60a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/flatten.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Filter } from ".";
import { Filter } from "./index";

export const valfilter = (f: Filter, path?: string): Filter => {
if (path && "attrPath" in f) {
Expand Down
2 changes: 1 addition & 1 deletion src/parser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Filter, Compare, NotFilter, Suffix, ValuePath } from ".";
import { Filter, Compare, NotFilter, Suffix, ValuePath } from "./index";

type TokenType = "Number" | "Quoted" | "Bracket" | "Word" | "EOT";
const EOT = { type: "EOT" as TokenType, literal: "" };
Expand Down
2 changes: 1 addition & 1 deletion src/stringify.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Filter } from ".";
import { Filter } from "./index";

export function stringify(f: Filter, wrapOr = false): string {
let returnValue = '';
Expand Down
2 changes: 1 addition & 1 deletion src/tester.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Filter, Compare } from ".";
import { Filter, Compare } from "./index";

type CompValue = Compare["compValue"];

Expand Down

0 comments on commit c23a60a

Please sign in to comment.