mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +03:00
a9bf9bb9e1
swc_ecma_codegen: - Handle unicode escape sequences when target is es5. (#1227, #1326) swc_ecma_transforms_compat: - Handle template literals correctly. (#1314) - Handle private class properties correctly. (#1306) swc: - Don't panic on `export * as foo from 'foo'`. (#1307)
22 lines
366 B
Plaintext
22 lines
366 B
Plaintext
{
|
|
"exclude": ".*.test.ts$",
|
|
"jsc": {
|
|
"parser": {
|
|
"syntax": "typescript",
|
|
"tsx": false,
|
|
"decorators": false,
|
|
"dynamicImport": true
|
|
},
|
|
"target": "es2020",
|
|
"loose": true
|
|
},
|
|
"module": {
|
|
"type": "commonjs",
|
|
"strict": false,
|
|
"strictMode": true,
|
|
"lazy": false,
|
|
"noInterop": false
|
|
},
|
|
"minify": false
|
|
}
|