lowdefy/.swcrc

18 lines
356 B
Plaintext
Raw Permalink Normal View History

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