mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
34 lines
560 B
Plaintext
34 lines
560 B
Plaintext
{
|
|
"test": [".*.tsx$",".*.ts$", ".*.js$"],
|
|
"module": {
|
|
"type": "commonjs"
|
|
},
|
|
"env": {
|
|
"targets": {
|
|
"chrome": "79",
|
|
"ie": "11",
|
|
"safari": "11.1"
|
|
},
|
|
"mode": "entry",
|
|
"coreJs": 3
|
|
},
|
|
"jsc": {
|
|
"parser": {
|
|
"syntax": "typescript",
|
|
"tsx": true,
|
|
"decorators": true,
|
|
"dynamicImport": true
|
|
},
|
|
"target": "es2016",
|
|
"loose": true,
|
|
"transform": {
|
|
"optimizer": {
|
|
"globals": {
|
|
"vars": {
|
|
"__DEBUG__": "true"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |