UNPKG

713 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"use strict";
8
9//------------------------------------------------------------------------------
10// Requirements
11//------------------------------------------------------------------------------
12
13// None!
14
15//------------------------------------------------------------------------------
16// Public
17//------------------------------------------------------------------------------
18
19module.exports = {
20
21 // React JSX parsing
22 jsx: false,
23
24 // allow return statement in global scope
25 globalReturn: false,
26
27 // allow implied strict mode
28 impliedStrict: false
29};