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
parent
061618745c
commit
055b8909af
|
@ -3,6 +3,7 @@
|
|||
"compilerOptions": {
|
||||
"module": "esnext",
|
||||
"lib": ["ES2020"],
|
||||
"target": "ES2020",
|
||||
"importHelpers": true,
|
||||
"declaration": true,
|
||||
"sourceMap": true,
|
||||
|
|
Loading…
Reference in New Issue