feat: enable stricter typescript compiler options

This commit is contained in:
2024-01-05 11:55:15 +01:00
parent 7e779b738e
commit 33181941ba
58 changed files with 185 additions and 138 deletions

9
packages/gitlab-api/environment.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
GITLAB_PRIVATE_TOKEN?: string;
}
}
}
export {};