mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-24 02:52:24 -08:00
11 lines
235 B
TypeScript
11 lines
235 B
TypeScript
|
import { Config, Env } from '@n8n/config';
|
||
|
|
||
|
@Config
|
||
|
export class JsRunnerConfig {
|
||
|
@Env('NODE_FUNCTION_ALLOW_BUILTIN')
|
||
|
allowedBuiltInModules: string = '';
|
||
|
|
||
|
@Env('NODE_FUNCTION_ALLOW_EXTERNAL')
|
||
|
allowedExternalModules: string = '';
|
||
|
}
|