mirror of
https://github.com/lowdefy/lowdefy.git
synced 2024-11-27 05:12:31 +08:00
19 lines
379 B
Plaintext
19 lines
379 B
Plaintext
{
|
|
"exclude": [".*.test.js$", ".*/tests/.*", ".*/__mocks__/.*"],
|
|
"jsc": {
|
|
"parser": {
|
|
"syntax": "ecmascript",
|
|
"jsx": true,
|
|
"dynamicImport": true
|
|
},
|
|
"target": "es2020",
|
|
"keepClassNames": true,
|
|
"transform": { "react": { "runtime": "automatic" } }
|
|
},
|
|
"module": {
|
|
"type": "es6",
|
|
"noInterop": true,
|
|
"ignoreDynamic": true
|
|
}
|
|
}
|