mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
28 lines
398 B
Plaintext
28 lines
398 B
Plaintext
|
[
|
||
|
{
|
||
|
"test": [".*.js"],
|
||
|
"jsc": {
|
||
|
"target": "es2019",
|
||
|
"parser": {
|
||
|
"dynamicImport": true,
|
||
|
"syntax": "ecmascript"
|
||
|
}
|
||
|
},
|
||
|
"module": {
|
||
|
"type": "commonjs"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"test": [".*.ts"],
|
||
|
"jsc": {
|
||
|
"target": "es2019",
|
||
|
"parser": {
|
||
|
"syntax": "typescript"
|
||
|
}
|
||
|
},
|
||
|
"module": {
|
||
|
"type": "commonjs"
|
||
|
}
|
||
|
}
|
||
|
]
|