diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 561d350..04f0535 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: node-version: '12.x' registry-url: 'https://registry.npmjs.org' - name: Install Modules - run: npm ci + run: npm install - name: Run type check run: npm run types:check - name: Run Linter diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c3d723a..20fc43e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Install Modules - run: npm ci + run: npm install - name: Run type check run: npm run types:check - name: Run Linter diff --git a/.gitignore b/.gitignore index 657f7cc..209c37a 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ dist .idea .vscode examples/**/package-lock.json +package-lock.json \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index d27a1a3..de28a91 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "lib": ["esnext", "dom"], "module": "commonjs", "moduleResolution": "node", + "noImplicitAny": false, "noFallthroughCasesInSwitch": true, "noUnusedLocals": true, "noUnusedParameters": true,