dykj-ground-floor/env.d.ts
2024-05-30 19:07:35 +08:00

4 lines
543 B
TypeScript
Raw 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.

// 是一个TypeScript引用指令通常出现在使用Vite作为开发服务器的项目中。这条注释有着特殊的意义它告知TypeScript编译器去包含来自@types/vite__client的类型声明文件。Vite客户端类型包含了用于Vite提供的客户端实用类型声明比如在浏览器环境中可用的全局变量或API。这样可以确保在项目中使用Vite的特性时编辑器和TypeScript能够提供正确的代码补全和类型检查提高开发体验。
/// <reference types="vite/client" />