@jsverse/transloco-utils
Advanced tools
Comparing version 7.0.1 to 7.0.2
@@ -1,5 +0,8 @@ | ||
# Changelog | ||
## 7.0.2 (2024-07-26) | ||
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). | ||
### 🩹 Fixes | ||
- **utils:** 🐛 update the global config types | ||
## [7.0.1](https://github.com/ngneat/transloco/compare/transloco-utils-7.0.0...transloco-utils-7.0.1) (2024-05-31) | ||
@@ -6,0 +9,0 @@ |
{ | ||
"name": "@jsverse/transloco-utils", | ||
"version": "7.0.1", | ||
"version": "7.0.2", | ||
"description": "Transloco utils library", | ||
"main": "./src/index.js", | ||
"main": "src/index.js", | ||
"engines": { | ||
@@ -38,2 +38,2 @@ "node": ">=16" | ||
"type": "commonjs" | ||
} | ||
} |
@@ -13,7 +13,10 @@ export interface TranslocoGlobalConfig { | ||
output?: string; | ||
fileFormat?: 'json' | 'pot'; | ||
marker?: string; | ||
addMissingKeys?: boolean; | ||
emitErrorOnExtraKeys?: boolean; | ||
replace?: boolean; | ||
defaultValue?: string; | ||
defaultValue?: string | undefined; | ||
unflat?: boolean; | ||
}; | ||
} |
5060
44