diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index a4f1c7cfd1..0432976eb7 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -4,7 +4,6 @@ on: push: branches: - "master" - - "v7.0.0" paths: - "lib/**" - "test/**" diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 700cda5872..7c443e7418 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -4,17 +4,18 @@ on: push: branches: - "master" - - "v7.0.0" paths: - "lib/**" - "test/**" - "package.json" + - "tsconfig.json" - ".github/workflows/tester.yml" pull_request: paths: - "lib/**" - "test/**" - "package.json" + - "tsconfig.json" - ".github/workflows/tester.yml" permissions: diff --git a/tsconfig.json b/tsconfig.json index 78046e5376..6277f08394 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "commonjs", - "target": "es6", + "target": "es2020", "sourceMap": true, "outDir": "dist", "declaration": true, @@ -17,4 +17,4 @@ "exclude": [ "node_modules" ] -} \ No newline at end of file +}