diff --git a/test-driver/tsconfig.json b/test-driver/tsconfig.json index f9cbcdf3..f2031edc 100644 --- a/test-driver/tsconfig.json +++ b/test-driver/tsconfig.json @@ -1,4 +1,4 @@ -// Test-driver Typscript Compiler Configuration +// Test-driver Typescript Compiler Configuration // Targets CommonJS Module system and ES6 feature set. { "include": [ @@ -8,11 +8,11 @@ "**/*.d.ts" ], "compilerOptions": { - "target": "es6", + "target": "es2020", "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, - "lib": ["es6", "es2017.object"], + "lib": ["ESNext"], "declaration": false, "inlineSources": true, "sourceMap": true, diff --git a/tsconfig.json b/tsconfig.json index 1caf7a23..d6de58f6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,4 @@ -// Base Typscript Compiler Configuration +// Base Typescript Compiler Configuration // Targets CommonJS Module system and ES6 feature set. { "include": ["src/**/*"],