diff --git a/.github/workflows/docs-and-coverage.yml b/.github/workflows/docs-and-coverage.yml
index f9cf0c0..9e044e8 100644
--- a/.github/workflows/docs-and-coverage.yml
+++ b/.github/workflows/docs-and-coverage.yml
@@ -11,3 +11,6 @@ jobs:
uses: fingerprintjs/dx-team-toolkit/.github/workflows/docs-and-coverage.yml@v1
with:
run-after-install: pnpm generate:version
+ prepare-gh-pages-commands: |
+ mv docs ./gh-pages
+ rm -rf ./gh-pages/coverage
diff --git a/README.md b/README.md
index aeb3bba..0b6f573 100644
--- a/README.md
+++ b/README.md
@@ -10,8 +10,8 @@
-
-
+
+
diff --git a/tsconfig.test-dts.json b/tsconfig.test-dts.json
index 94f076b..6793ef5 100644
--- a/tsconfig.test-dts.json
+++ b/tsconfig.test-dts.json
@@ -8,14 +8,17 @@
"es2020",
"dom"
],
- "skipLibCheck": true,
+ "skipLibCheck": false,
"noEmit": true,
"isolatedModules": true,
+ "strict": true,
+ "experimentalDecorators": true,
+ "types": [],
"paths": {
"@fingerprint/angular": ["dist/fingerprintjs-pro-angular"]
}
},
"include": [
- "dist/fingerprintjs-pro-angular/index.d.ts"
+ "dist/fingerprintjs-pro-angular/**/*.d.ts"
]
}