feat(cli): make default typescript configurable

This commit is contained in:
Ruben Fiszel
2024-01-27 20:29:31 +01:00
parent 414ebee0f1
commit 59bbff662e
8 changed files with 69 additions and 58 deletions
+1 -2
View File
@@ -4,7 +4,7 @@ export interface ScriptMetadata {
summary: string;
description: string;
lock: string | string[];
is_template: boolean;
is_template?: boolean;
kind: string;
schema: {
$schema: string;
@@ -19,7 +19,6 @@ export function defaultScriptMetadata(): ScriptMetadata {
summary: "",
description: "",
lock: "",
is_template: false,
kind: "script",
schema: {
$schema: "https://json-schema.org/draft/2020-12/schema",