Skip to content

Commit

Permalink
chore: organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Dec 1, 2022
1 parent 96ad98e commit e7ccfe6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/index.ts
@@ -1,15 +1,15 @@
import { basename, dirname, isAbsolute, join, relative } from './path'
import { searchForWorkspaceRoot, normalizePath, Plugin } from 'vite'
import type { CompilerOptions } from 'typescript'
import _debug from 'debug'
import * as fs from 'fs'
import globRex from 'globrex'
import { resolve } from 'path'
import * as tsconfck from 'tsconfck'
import type { CompilerOptions } from 'typescript'
import { inspect } from 'util'
import { normalizePath, Plugin, searchForWorkspaceRoot } from 'vite'
import { resolvePathMappings } from './mappings'
import { basename, dirname, isAbsolute, join, relative } from './path'
import { PluginOptions } from './types'

import _debug from 'debug'
import * as fs from 'fs'
import { resolvePathMappings } from './mappings'
import { resolve } from 'path'
const debug = _debug('vite-tsconfig-paths')

type ViteResolve = (id: string, importer: string) => Promise<string | undefined>
Expand Down

0 comments on commit e7ccfe6

Please sign in to comment.