-
Notifications
You must be signed in to change notification settings - Fork 0
/
.swcrc
37 lines (36 loc) · 1.03 KB
/
.swcrc
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
{
"$schema": "https://json.schemastore.org/swcrc",
"jsc": {
"parser": {
"syntax": "ecmascript",
"jsx": true,
"dynamicImport": true,
"privateMethod": false,
"functionBind": false,
"exportDefaultFrom": false,
"exportNamespaceFrom": false,
"decorators": false,
"decoratorsBeforeExport": false,
"topLevelAwait": true,
"importMeta": false
},
// "transform": null,
"target": "esnext",
"loose": true,
"externalHelpers": false,
// Requires v1.2.50 or upper and requires target to be es2016 or upper.
"keepClassNames": false
},
// "module": {
// "type": "commonjs",
// // These are defaults.
// "strict": false,
// "strictMode": true,
// "lazy": false,
// "noInterop": false
// },
"sourceMaps": true,
// "inlineSourcesContent": true,
// "isModule": true,
"minify": false
}