chore: fix ts-jest warning (#8360)

This commit is contained in:
neverland 2021-03-16 09:59:13 +08:00 committed by GitHub
parent 75e072c03d
commit 6d0e02ee62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2017",
"target": "ES2019",
"outDir": "./lib",
"module": "commonjs",
"strict": true,

View File

@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2017",
"target": "ES2019",
"outDir": "./lib",
"module": "commonjs",
"strict": true,

View File

@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2017",
"target": "ES2019",
"outDir": "./lib",
"module": "commonjs",
"strict": true,

View File

@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"target": "ES5",
"outDir": "./dist",
"module": "ES2015",
"strict": true,

View File

@ -2,8 +2,8 @@
"compilerOptions": {
"baseUrl": ".",
"jsx": "preserve",
"target": "esnext",
"module": "esnext",
"target": "ES2019",
"module": "ESNext",
"strict": true,
"allowJs": true,
"skipLibCheck": true,