- add layer for lambda execution - add layer for local execution - add package resolve for the monaco editor - add route to get installed package for serverless functions - add layer versioning
5 lines
136 B
TypeScript
5 lines
136 B
TypeScript
import { join } from 'path';
|
|
import { tmpdir } from 'os';
|
|
|
|
export const SERVERLESS_TMPDIR_FOLDER = join(tmpdir(), 'serverless-tmpdir');
|