32 lines
513 B
Plaintext
32 lines
513 B
Plaintext
{
|
|
"$schema": "https://swc.rs/schema.json",
|
|
"jsc": {
|
|
"parser": {
|
|
"syntax": "typescript",
|
|
"dynamicImport": true,
|
|
"decorators": true
|
|
|
|
},
|
|
"transform": {
|
|
"legacyDecorator": true,
|
|
"decoratorMetadata": true
|
|
},
|
|
"experimental": {
|
|
"keepImportAssertions": true
|
|
},
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"target": "es2022"
|
|
},
|
|
"module": {
|
|
"type": "es6",
|
|
"importInterop": "node",
|
|
"resolveFully": true
|
|
},
|
|
"minify": false
|
|
}
|