swc/tests/projects/issue-779-2/.swcrc

26 lines
421 B
Plaintext
Raw Normal View History

{
"test": [".*.tsx$",".*.ts$", ".*.js$"],
"module": {
"type": "commonjs"
},
"jsc": {
"parser": {
"syntax": "typescript",
"tsx": true,
"decorators": true,
"dynamicImport": true
},
"target": "es2016",
"loose": true,
"transform": {
"optimizer": {
"globals": {
"vars": {
"__DEBUG__": "true"
}
}
}
}
}
}