🚧 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

@@ -1,18 +1,14 @@
{
"name": "@typebot.io/radar",
"version": "1.0.0",
"main": "./index.ts",
"types": "./index.ts",
"license": "AGPL-3.0-or-later",
"private": true,
"dependencies": {
"@udecode/plate-common": "30.4.5"
},
"devDependencies": {
"@typebot.io/schemas": "workspace:*",
"@typebot.io/prisma": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
"@typebot.io/env": "workspace:*",
"typescript": "5.4.5"
"@typebot.io/prisma": "workspace:*",
"@typebot.io/schemas": "workspace:*"
}
}
}

View File

@@ -1,8 +1,18 @@
{
"extends": "@typebot.io/tsconfig/base.json",
"extends": "../tsconfig/base.json",
"include": ["**/*.ts"],
"exclude": ["node_modules"],
"compilerOptions": {
"target": "ES2015"
}
"outDir": "dist"
},
"references": [
{
"path": "../env"
},
{
"path": "../prisma"
},
{
"path": "../schemas"
}
]
}