man idek what im doing anymore i just want this shit to work
Some checks failed
Deploy Frontend / deploy (push) Failing after 1m35s

This commit is contained in:
Lee 2024-10-04 11:48:25 +01:00
parent e9e1ea1858
commit 721c8e9076
2 changed files with 24 additions and 34 deletions

@ -1,46 +1,28 @@
{ {
"compilerOptions": { "compilerOptions": {
"lib": [ "lib": ["DOM", "DOM.Iterable", "ES2022"],
"dom", "isolatedModules": true,
"dom.iterable", "esModuleInterop": true,
"esnext" "jsx": "react-jsx",
], "module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2022",
"strict": true,
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"jsx": "preserve",
"incremental": true,
"declaration": true,
"declarationMap": true,
"plugins": [ "plugins": [
{ {
"name": "next" "name": "next"
} }
], ],
"outDir": "dist",
"baseUrl": ".",
"paths": { "paths": {
"@/*": [ "@/*": ["./src/*"]
"./src/*" }
]
},
"target": "ES2022",
"rootDir": "./src/",
"outDir": "./out/"
}, },
"include": [ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "tailwind.config.ts"],
"next-env.d.ts", "exclude": ["node_modules"]
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"tailwind.config.ts"
],
"exclude": [
"node_modules"
]
} }

8
apps/frontend/turbo.json Normal file

@ -0,0 +1,8 @@
{
"extends": ["//"],
"tasks": {
"build": {
"outputs": [".next/**", "!.next/cache/**"]
}
}
}