mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
* chore: fix script extension * chore: remove extention * fix: at least it run can now * chore: fix dev script * refactor: change to use env file for config * chore: update readme
31 lines
673 B
Plaintext
31 lines
673 B
Plaintext
{
|
|
"minify": true,
|
|
"jsc": {
|
|
"parser": {
|
|
"syntax": "typescript",
|
|
"decorators": true,
|
|
"dynamicImport": true
|
|
},
|
|
"transform": {
|
|
"legacyDecorator": true,
|
|
"decoratorMetadata": true
|
|
},
|
|
"target": "es2022",
|
|
"keepClassNames": true,
|
|
"loose": true,
|
|
"minify": {
|
|
"compress": {
|
|
"unused": true
|
|
},
|
|
"mangle": true
|
|
}
|
|
},
|
|
"module": {
|
|
"type": "es6",
|
|
"strict": false,
|
|
"strictMode": true,
|
|
"lazy": false,
|
|
"noInterop": false
|
|
},
|
|
"sourceMaps": "inline"
|
|
} |