diff options
author | 2021-08-10 18:26:16 -0700 | |
---|---|---|
committer | 2021-08-10 18:26:16 -0700 | |
commit | 10b4b872a2824b6d7c66030dafc831f0da3309e8 (patch) | |
tree | a26e97e9e7be22c4407ccc628a54eecf09516c1f /src/api/schema.d.ts | |
parent | 0daff24b16487acfb420813793bc432f8ceaf333 (diff) | |
download | bun-10b4b872a2824b6d7c66030dafc831f0da3309e8.tar.gz bun-10b4b872a2824b6d7c66030dafc831f0da3309e8.tar.zst bun-10b4b872a2824b6d7c66030dafc831f0da3309e8.zip |
This is alot
Former-commit-id: 4b2a396611ec03270dc768b70e488b0f5eee2a37
Diffstat (limited to 'src/api/schema.d.ts')
-rw-r--r-- | src/api/schema.d.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/schema.d.ts b/src/api/schema.d.ts index 9d495e93a..58207e2f9 100644 --- a/src/api/schema.d.ts +++ b/src/api/schema.d.ts @@ -253,11 +253,13 @@ type uint32 = number; export interface LoadedRouteConfig { dir: string; extensions: string[]; + static_dir: string; } export interface RouteConfig { dir?: string; extensions?: string[]; + static_dir?: string; } export interface TransformOptions { @@ -278,7 +280,6 @@ type uint32 = number; platform?: Platform; serve?: boolean; extension_order?: string[]; - public_dir?: string; only_scan_dependencies?: ScanDependencyMode; generate_node_module_bundle?: boolean; node_modules_bundle_path?: string; |