forked from kataki/CS3SiteArchive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbabel-modules.js
49 lines (48 loc) · 1.16 KB
/
babel-modules.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// we dont want exponentiation-operator bc it breaks for bigint
module.exports = [
"arrow-functions",
"block-scoped-functions",
"block-scoping",
"classes",
"computed-properties",
"destructuring",
"duplicate-keys",
"for-of",
"function-name",
"instanceof",
"literals",
"new-target",
"object-super",
"parameters",
"shorthand-properties",
"spread",
"sticky-regex",
"template-literals",
"typeof-symbol",
"unicode-escapes",
"unicode-regex",
"property-mutators",
"member-expression-literals",
"property-literals",
"reserved-words",
"class-properties",
"class-static-block",
"private-property-in-object",
"syntax-top-level-await2021",
"logical-assignment-operators",
"numeric-separator",
"export-namespace-from",
"nullish-coalescing-operator",
"optional-chaining",
"syntax-dynamic-import",
"syntax-import-meta",
"syntax-bigint",
"optional-catch-binding",
"json-strings",
"async-generator-functions",
"dotall-regex",
"named-capturing-groups-regex",
"object-rest-spread",
"unicode-property-regex",
"async-to-generator"
]