b965f5e4a9
* feat: add optional swc * fix: windowsで動かない現象を修正 * fix: fix swc path alias * fix: docker build時に`Host key verification failed`と言われてgitリポジトリからパッケージをインストールできないのでssh -> htpsに変更
23 lines
390 B
Text
23 lines
390 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": "src",
|
|
"paths": {
|
|
"@/*": ["*"]
|
|
},
|
|
"target": "es2021"
|
|
},
|
|
"minify": false
|
|
}
|