Define TypeScript compiler target (#522)

TypeScript was complaining about some syntax features, this solves it.
It doesn’t affect the output, as `tsdx` ignores the `target` property.
master
Remco Haszing 2022-04-13 18:43:35 +02:00 committed by GitHub
parent 061618745c
commit 055b8909af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@
"compilerOptions": {
"module": "esnext",
"lib": ["ES2020"],
"target": "ES2020",
"importHelpers": true,
"declaration": true,
"sourceMap": true,