calckey/packages/backend/.swcrc

32 lines
513 B
Plaintext
Raw Permalink Normal View History

{
2024-11-15 19:45:26 +00:00
"$schema": "https://swc.rs/schema.json",
2023-06-24 07:59:27 +00:00
"jsc": {
2024-11-15 19:45:26 +00:00
"parser": {
2023-06-24 07:59:27 +00:00
"syntax": "typescript",
"dynamicImport": true,
"decorators": true
2024-11-15 19:45:26 +00:00
2023-06-24 07:59:27 +00:00
},
"transform": {
"legacyDecorator": true,
"decoratorMetadata": true
},
"experimental": {
"keepImportAssertions": true
},
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"target": "es2022"
2023-06-24 07:59:27 +00:00
},
2024-11-15 19:45:26 +00:00
"module": {
"type": "es6",
"importInterop": "node",
"resolveFully": true
},
"minify": false
}