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