Skip to content

Commit

Permalink
🚧
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin Burg committed Sep 4, 2023
1 parent a74d673 commit 538535b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions batcher-ui/global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
SECRET: string;
}
}
}
export {};
5 changes: 3 additions & 2 deletions batcher-ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"incremental": true,
"esModuleInterop": true,
"isolatedModules": true,
"module": "esnext"
"module": "esnext",
},
"include": [
"src/utils/**/*",
Expand All @@ -36,7 +36,8 @@
".eslintrc.json",
".prettierrc.json",
"jest.config.js",
"pages/*"
"pages/*",
"global.d.ts"
],
"exclude": [
"node_modules",
Expand Down

0 comments on commit 538535b

Please sign in to comment.