lowdefy/.swcrc

18 lines
356 B
Plaintext
Raw Normal View History

{
"exclude": [".*.test.js$", ".*/tests/.*", ".*/__mocks__/.*"],
"jsc": {
"parser": {
"syntax": "ecmascript",
"jsx": true,
"dynamicImport": true,
"topLevelAwait": true
},
2022-08-23 19:16:31 +08:00
"target": "es2020",
2021-11-09 20:51:20 +08:00
"keepClassNames": true,
"transform": { "react": { "runtime": "classic" } }
},
"module": {
2023-09-15 21:26:35 +08:00
"type": "es6"
}
}