UNPKG

@stencil/core

Version:

A Compiler for Web Components and Progressive Web Apps

39 lines (35 loc) 887 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const BUILD = {}; function resetBuildConditionals(b) { Object.keys(b).forEach(key => { if (typeof b[key] === 'boolean') { b[key] = true; } else { b[key] = null; } }); b.isDev = true; b.lazyLoad = true; b.member = true; b.reflect = true; b.scoped = true; b.shadowDom = true; b.slotRelocation = true; b.svg = true; b.updatable = true; b.vdomAttribute = true; b.vdomClass = true; b.vdomStyle = true; b.vdomKey = true; b.vdomRef = true; b.vdomListener = true; b.vdomFunctional = true; b.vdomText = true; b.allRenderFn = false; b.hydrateClientSide = false; b.hydrateServerSide = false; } exports.BUILD = BUILD; exports.resetBuildConditionals = resetBuildConditionals;