This commit is contained in:
Jacob Nguyen
2024-07-27 00:20:42 -05:00
parent 7b99f02307
commit 6db6cf52a7
3 changed files with 2 additions and 4 deletions

View File

@@ -4,9 +4,6 @@ export interface sernConfig {
base: string;
commands: string;
};
scripts?: {
prepublish?: string;
};
buildPath: string;
rest?: Record<string, Record<string, unknown>>;
}
@@ -14,6 +11,6 @@ export interface sernConfig {
export interface TheoreticalEnv {
DISCORD_TOKEN: string;
APPLICATION_ID?: string;
MODE: 'PROD' | 'DEV';
MODE: 'production' | 'environment';
[name: string]: string;
}

View File

View File

@@ -1,5 +1,6 @@
import { defineConfig } from 'tsup';
import { createRequire } from 'node:module';
const shared = {
entry: [
'src/index.ts',