🚧 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

@@ -2,8 +2,6 @@
"name": "@typebot.io/prisma",
"license": "AGPL-3.0-or-later",
"version": "0.1.0",
"main": "./index.ts",
"types": "./index.ts",
"private": true,
"scripts": {
"dev": "dotenv -e ./.env -e ../../.env -- tsx scripts/studio.ts",
@@ -21,8 +19,6 @@
"@types/node": "20.4.2",
"dotenv-cli": "7.4.1",
"prisma": "5.12.1",
"@typebot.io/tsconfig": "workspace:*",
"tsx": "4.6.2",
"typescript": "5.4.5"
"tsx": "4.6.2"
}
}
}

View File

@@ -1,8 +1,7 @@
{
"extends": "@typebot.io/tsconfig/base.json",
"extends": "../tsconfig/base.json",
"include": ["**/*.ts"],
"exclude": ["node_modules"],
"compilerOptions": {
"declaration": false
"outDir": "dist"
}
}