配置
插件选项
属性 | 类型 | 默认值 | 描述 |
---|---|---|---|
prefix / suffix | string | "" | 自定义前后缀 |
disableLaunchEditor | boolean | false | 是否禁用编辑器跳转功能 |
specifiedEditor | string | "" | 指定打开的编辑器,所有支持的编辑器 |
disableHighlight | boolean | false | 是否禁用高亮输出功能 |
port | number | 3070 | 指定插件的服务端口号 |
extendedPathFileNames | string[] | [] | 拓展路径文件名 |
babelParserPlugins | ParserPlugin[] | ["typescript", "jsx"] | babel插件,传入的值会与默认值自动合并。所有插件 |
disablePassLogs | boolean | false | 是否禁用传递日志功能 |
silent | boolean | false | 阻止项目启动时插件的终端输出 |
TypeScript
有两种方式来配置 TypeScript 类型:
json
{
"compilerOptions": {
"types": [
"unplugin-turbo-console/client"
]
}
}
或者
ts
/// <reference types="unplugin-turbo-console/client" />