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": {
|
"compilerOptions": {
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"lib": ["ES2020"],
|
"lib": ["ES2020"],
|
||||||
|
"target": "ES2020",
|
||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
|
|
Loading…
Reference in New Issue