feat: remove turbo

This commit is contained in:
2025-06-13 00:09:18 +08:00
parent 07955286f1
commit c60f6f511e
20 changed files with 1796 additions and 3577 deletions

View File

@@ -6,13 +6,14 @@
"build": "email build",
"dev": "email dev --port 5003",
"export": "email export",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"clean": "git clean -xdf .cache dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {
"@react-email/components": "0.0.31",
"@react-email/components": "^0.0.42",
"react": "^19.0.0",
"react-email": "3.0.4"
"react-email": "^4.0.16",
"@konobangu/email": "workspace:*"
},
"devDependencies": {
"@types/react": "19.0.1"

View File

@@ -2,8 +2,12 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"jsx": "react-jsx"
"jsx": "react-jsx",
"jsxImportSource": "react",
"module": "ESNext",
"moduleResolution": "bundler"
},
"references": [{ "path": "../../packages/email" }],
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}