Build decision flow editor and runtime integration

This commit is contained in:
Remi
2025-09-20 18:33:32 +02:00
parent 6999235668
commit cf6748b9bc
23 changed files with 4030 additions and 115 deletions

20
tsconfig.scripts.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"~~/*": ["./*"],
"@@/*": ["./*"],
"~/\*": ["./app/*"],
"@/*": ["./app/*"]
},
"types": ["node"]
},
"include": ["scripts/**/*.ts", "server/**/*.ts", "shared/**/*.ts"]
}