UNPKG

@adguard/agtree

Version:
24 lines (22 loc) 573 B
/* * AGTree v3.2.1 (build date: Wed, 28 May 2025 13:36:39 GMT) * (c) 2025 Adguard Software Ltd. * Released under the MIT license * https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/agtree#readme */ /** * @file Common options for all parsers. */ /** * Default parser options. */ const defaultParserOptions = Object.freeze({ tolerant: false, isLocIncluded: true, parseAbpSpecificRules: true, parseUboSpecificRules: true, includeRaws: true, ignoreComments: false, parseHostRules: false, }); export { defaultParserOptions };