feat: remove turbo
This commit is contained in:
@@ -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');
|
||||
},
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -53,4 +53,4 @@ const ExampleContactEmail = () => (
|
||||
/>
|
||||
);
|
||||
|
||||
export default ExampleContactEmail;
|
||||
export default ExampleContactEmail;
|
||||
|
||||
@@ -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"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user