2
0

🚧 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,8 +1,6 @@
{
"name": "typebot-js",
"version": "2.2.17",
"main": "dist/index.js",
"unpkg": "dist/index.global.js",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "tsup --watch",
@@ -11,14 +9,12 @@
},
"devDependencies": {
"@types/jest": "29.4.0",
"tsup": "6.5.0",
"eslint": "8.44.0",
"eslint-config-custom": "workspace:*",
"jest": "29.4.1",
"jest-environment-jsdom": "29.4.1",
"prettier": "2.8.8",
"ts-jest": "29.0.5",
"typescript": "5.4.5",
"@typebot.io/tsconfig": "workspace:*"
"tsup": "6.5.0"
}
}
}

View File

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