lowdefy/.swcrc

19 lines
377 B
Plaintext
Raw Normal View History

{
"exclude": [".*.test.js$", ".*/tests/.*", ".*/__mocks__/.*"],
"jsc": {
"parser": {
"syntax": "ecmascript",
"jsx": true,
"dynamicImport": true
},
2021-11-08 01:48:06 +08:00
"target": "es2020",
2021-11-09 20:51:20 +08:00
"keepClassNames": true,
"transform": { "react": { "runtime": "classic" } }
},
"module": {
"type": "es6",
"noInterop": true,
"ignoreDynamic": true
}
}