Skip to content

Commit

Permalink
fix type resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
dcousens committed Feb 7, 2024
1 parent 9ab2bba commit ac822da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/lib/create-admin-meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type {
KeystoneContext,
JSONValue,
MaybeItemFunction,
} from '../../types'
} from '../types'
import type { FilterOrderArgs } from '../types/config/fields'

import { humanize } from './utils'
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/system.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type express from 'express'
import next from 'next'
import type { KeystoneConfig, KeystoneContext } from '../types'
import type { KeystoneConfig, KeystoneContext } from './types'
import { createAdminUIMiddlewareWithNextApp } from './lib/server/createAdminUIMiddleware'

/** @deprecated */
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"isolatedModules": true,
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"noEmit": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
Expand Down

0 comments on commit ac822da

Please sign in to comment.