Skip to content

Commit

Permalink
Update configs
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed Nov 25, 2023
1 parent c4e0d0f commit 440d062
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
type Rectangle,
type Item,
} from "../data-grid/data-grid-types.js";
import { getDefaultTheme } from "..";
import { getDefaultTheme } from "../index.js";
import type { GetCellRendererCallback } from "../data-grid/cells/cell-types.js";
import { CellRenderers } from "../data-grid/cells/index.js";

Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/data-editor-fns.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable sonarjs/no-duplicate-string */
import { CompactSelection, type GridSelection } from "../src/index.js";
import { expandSelection, unquote } from "../src/data-editor/data-editor-fns"; // Adjust the import path to your setup
import { expandSelection, unquote } from "../src/data-editor/data-editor-fns.js"; // Adjust the import path to your setup

describe("unquote", () => {
it("should correctly unquote single line string without quotes", () => {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"esModuleInterop": true,
"composite": true,
"jsx": "react",
"moduleResolution": "node", // make node-16
"moduleResolution": "node16", // make node-16
"module": "esnext",
"noImplicitAny": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"noUnusedParameters": true,
"strict": true,
"target": "es6", // es2022
"target": "es2022", // es2022
"types": ["jest", "node"]
}
}

0 comments on commit 440d062

Please sign in to comment.