mirror of
https://github.com/lowdefy/lowdefy.git
synced 2024-11-21 01:14:48 +08:00
18 lines
356 B
Plaintext
18 lines
356 B
Plaintext
{
|
|
"exclude": [".*.test.js$", ".*/tests/.*", ".*/__mocks__/.*"],
|
|
"jsc": {
|
|
"parser": {
|
|
"syntax": "ecmascript",
|
|
"jsx": true,
|
|
"dynamicImport": true,
|
|
"topLevelAwait": true
|
|
},
|
|
"target": "es2020",
|
|
"keepClassNames": true,
|
|
"transform": { "react": { "runtime": "classic" } }
|
|
},
|
|
"module": {
|
|
"type": "es6"
|
|
}
|
|
}
|