1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2024-07-20 07:30:11 +02:00

chore: simplify .swcrc config

This commit is contained in:
Théo LUDWIG 2023-07-22 12:28:45 +02:00
parent 5abdb8a1f1
commit 82e32f26ff
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

14
.swcrc
View File

@ -3,21 +3,11 @@
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true,
"dynamicImport": true
},
"transform": {
"legacyDecorator": true,
"decoratorMetadata": true
},
"target": "es2022",
"loose": true
"target": "es2022"
},
"module": {
"type": "es6",
"strict": false,
"strictMode": true,
"lazy": false,
"noInterop": false
"type": "es6"
}
}