+> = ({ csrfToken }) => {
+ return (
+
+ {csrfToken}
+
+
+
+
+ );
+};
+
+export default FormPage;
diff --git a/tsconfig.json b/tsconfig.json
index 960a8d27..ebca43a0 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,32 +1,42 @@
{
- "exclude": [
- "node_modules",
- "__tests__"
- ],
- "include": [
- "api/**/*.ts",
- "_utils/**/*.ts",
- "_requests/**/*.ts",
- "__tests__/**/*.ts",
- "__test-utils__/**/*.ts",
- "_types/**/*.ts"
- ],
- "compilerOptions": {
- "target": "ESNext",
- "module": "CommonJS",
- "outDir": "./dist",
- // "rootDir": "api",
- "strict": true,
- "typeRoots": [
- "node_modules/@types"
- ],
- "types": [
- "node",
- "jest"
- ],
- "esModuleInterop": true,
- "moduleResolution": "node",
- "isolatedModules": true,
- "forceConsistentCasingInFileNames": true
- }
+ "compilerOptions": {
+ "target": "es5",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": [
+ "./src/*",
+ "./pages/*"
+ ]
+ },
+ "forceConsistentCasingInFileNames": true
+ },
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts"
+ ],
+ "exclude": [
+ "node_modules"
+ ]
}
\ No newline at end of file
diff --git a/vercel.json b/vercel.json
deleted file mode 100644
index 5702eee3..00000000
--- a/vercel.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "version": 2,
- "public": true,
- "regions": ["fra1"],
- "rewrites": [{ "source": "/(.*)", "destination": "/api/$1" }]
-}