Add preliminary prisma support

This commit is contained in:
Jeffrey Li
2022-10-06 21:04:36 -07:00
committed by jeffvli
parent 95c52d8a11
commit 06914b3af4
24 changed files with 19120 additions and 98 deletions
+4 -4
View File
@@ -2,10 +2,10 @@
declare namespace NodeJS {
interface ProcessEnv {
VSCODE_DEBUG?: 'true'
DIST_ELECTRON: string
DIST: string
DIST: string;
DIST_ELECTRON: string;
/** /dist/ or /public/ */
PUBLIC: string
PUBLIC: string;
VSCODE_DEBUG?: 'true';
}
}