UNPKG

696 BJavaScriptView Raw
1/**
2 * @fileoverview The list of feature flags supported by the parser and their default
3 * settings.
4 * @author Nicholas C. Zakas
5 */
6
7//------------------------------------------------------------------------------
8// Requirements
9//------------------------------------------------------------------------------
10
11// None!
12
13//------------------------------------------------------------------------------
14// Public
15//------------------------------------------------------------------------------
16
17export default {
18
19 // React JSX parsing
20 jsx: false,
21
22 // allow return statement in global scope
23 globalReturn: false,
24
25 // allow implied strict mode
26 impliedStrict: false
27};