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": { "jsc": {
"parser": { "parser": {
"syntax": "typescript", "syntax": "typescript",
"decorators": true,
"dynamicImport": true "dynamicImport": true
}, },
"transform": { "target": "es2022"
"legacyDecorator": true,
"decoratorMetadata": true
},
"target": "es2022",
"loose": true
}, },
"module": { "module": {
"type": "es6", "type": "es6"
"strict": false,
"strictMode": true,
"lazy": false,
"noInterop": false
} }
} }