main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
696 bytes
|
Rev | Line | |
---|
[d565449] | 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 |
|
---|
| 17 | export 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 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.