Readue 的配置包。
npm install --save @readue/config
获取默认的配置。
import { getDefaultConfig } from '@readue/config';
getDefaultConfig()
读取用户自定义配置。
import { readUserConfig } from '@readue/config';
readUserConfig()
获取配置,当用户配置为空时,会使用 Readue 默认配置。
import { getConfig } from '@readue/config';
getConfig()
配置对象类型定义。
import { ReadueConfig } from '@readue/config';
const config: ReadueConfig = getDefaultConfig()
文件写入模式。
import { WRITE_MODE } from '@readue/config';
console.log(WRITE_MODE.COVER) // 'cover'
默认的插入位置占位符。
import { DEFAULT_INSERT_PLACEHOLDER } from '@readue/config';
console.log(DEFAULT_INSERT_PLACEHOLDER) // '__READUE_PLACEHOLDER__'