4579d02296
* feat: build backend with swc * fix: swc build target Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
25 lines
430 B
Text
25 lines
430 B
Text
{
|
|
"$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"
|
|
},
|
|
"minify": false
|
|
}
|