mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
* wip * Update build.js * Update build.js * [minify-backend用] フィジビリティ検証 (#16878) * fix: minify-backend * 間違えて入れちゃったのを戻す * 追従 * fix --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> * test * use node 24 * Revert "use node 24" This reverts commit7ae2debf23. * Revert "test" This reverts commitd919879091. * Update package.json * wip * Update compile_config.js * Revert "Update compile_config.js" This reverts commit0ee286f02b. * Update config.ts * wip * Update .swcrc * Update ClientServerService.ts * [ci skip] update CHANGELOG --------- Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
24 lines
388 B
Plaintext
24 lines
388 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": "../src-js",
|
|
"paths": {
|
|
"@/*": ["*"]
|
|
},
|
|
"target": "es2022"
|
|
},
|
|
"minify": false
|
|
}
|