ray-template/src/vite-env.d.ts
2023-12-15 11:24:23 +08:00

52 lines
1.8 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/// <reference types="./types/global.d.ts" />
/// <reference types="vite/client" />
/// <reference types="vite-svg-loader" />
/// <reference types="./types/app.d.ts" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
/**
*
* 由于 vite-plugin-eslint 库有点落后,导致 vite 高版本不能正确的识别 cjs 模块
* 所以这里手动定义
*
* 已经向该库提交了相关的 PR等待作者合并
* @see https://github.com/gxmari007/vite-plugin-eslint/pull/87
*
* 并且该问题也在其他用户中出现
* @see https://github.com/gxmari007/vite-plugin-eslint/issues/86
*/
declare module 'vite-plugin-eslint' {
import { Plugin } from 'vite'
import { ESLint } from 'eslint'
/** Plugin options, extending from ESlint options */
interface Options extends ESLint.Options {
/** Path to ESLint instance that will be used for linting */
eslintPath?: string
/** Check all matching files on project startup */
lintOnStart?: boolean
/** A single file, or array of files, to include when linting */
include?: string | string[]
/** A single file, or array of files, to exclude when linting */
exclude?: string | string[]
/** Custom error formatter or the name of a built-in formatter */
formatter?: string | ESLint.Formatter['format']
/** The waring found will be printed */
emitWarning?: boolean
/** The errors found will be printed */
emitError?: boolean
/** Will cause the module build to fail if there are any warnings, based on emitWarning */
failOnWarning?: boolean
/** Will cause the module build to fail if there are any errors, based on emitError */
failOnError?: boolean
}
const content: (rawOptions?: Options) => Plugin
export default content
}