🚧 Use TS project references

This commit is contained in:
Baptiste Arnaud
2024-08-28 18:09:35 +02:00
parent 0c7d2afd51
commit fdd6cc6fee
627 changed files with 3043 additions and 1696 deletions

View File

@@ -6,7 +6,6 @@
"dependencies": {
"@typebot.io/forge": "workspace:*",
"@typebot.io/lib": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
"@typebot.io/variables": "workspace:*",
"ai": "3.3.15",
"ky": "1.2.4"

View File

@@ -1,8 +1,20 @@
{
"extends": "@typebot.io/tsconfig/base.json",
"include": ["**/*.ts"],
"exclude": ["node_modules"],
"extends": "../tsconfig/base.json",
"include": [
"**/*.ts"
],
"compilerOptions": {
"lib": ["ES2021", "DOM"]
}
"outDir": "dist"
},
"references": [
{
"path": "../forge/core"
},
{
"path": "../lib"
},
{
"path": "../variables"
}
]
}