-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.swcrc
More file actions
26 lines (26 loc) · 560 Bytes
/
.swcrc
File metadata and controls
26 lines (26 loc) · 560 Bytes
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
{
"$schema": "https://json.schemastore.org/swcrc",
"jsc": {
"parser": {
"syntax": "typescript",
"dynamicImport": true,
"decorators": true
},
"transform": {
"legacyDecorator": true,
"decoratorMetadata": true
},
"experimental": {
"keepImportAssertions": true
},
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"target": "es2021"
},
"module": {
"type": "es6"
},
"minify": true
}