fix: downgrade tsconfig target to ES2019

This commit is contained in:
Mark Lawlor
2022-06-02 18:15:39 +10:00
parent 4b87133fe8
commit 5447022d26

View File

@@ -2,9 +2,9 @@
"compilerOptions": {
// Recommended settings for Node 14
// https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
"lib": ["ES2020"],
"lib": ["esnext"],
"module": "commonjs",
"target": "ES2020",
"target": "ES2019",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,