Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Questo repository è archiviato. Puoi vedere i file e clonarli, ma non puoi effettuare richieste di pushj o aprire problemi/richieste di pull.
|
- /**
- * @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,
-
- // allow experimental object rest/spread
- experimentalObjectRestSpread: false
- };
|