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

@@ -10,6 +10,7 @@ export interface SendOptions {
export const konosend = {
emails: {
// biome-ignore lint/suspicious/useAwait: <explanation>
send: async (_props: SendOptions) => {
throw new Error('unimplemented');
},

View File

@@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "git clean -xdf .cache .turbo dist node_modules",
"clean": "git clean -xdf .cache dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {

View File

@@ -53,4 +53,4 @@ const ExampleContactEmail = () => (
/>
);
export default ExampleContactEmail;
export default ExampleContactEmail;

View File

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