Skip to content

Commit

Permalink
chore: make ts happy
Browse files Browse the repository at this point in the history
  • Loading branch information
maxholman committed Nov 8, 2023
1 parent 7d6ea7e commit a6d4cbb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test-setup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import matchers from '@testing-library/jest-dom/matchers.js';
import matchers from '@testing-library/jest-dom/matchers';
import { cleanup } from '@testing-library/react';
import { expect, afterEach } from 'vitest';

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"moduleResolution": "node16",
"target": "es2022",
"lib": ["es2022"],
"module": "es2022",
"module": "node16",
"jsx": "react-jsx",
"incremental": true,
"strict": true,
Expand Down
1 change: 0 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { defineConfig } from 'vitest/config';

export default defineConfig({
plugins: [
// @ts-expect-error - bad types or incompat with node16 module reso
react(),
],
build: {
Expand Down

0 comments on commit a6d4cbb

Please sign in to comment.