merge front end to server

This commit is contained in:
Nikola Petrov
2024-08-01 14:36:35 +02:00
parent d2e06bfaab
commit 76f638d818
16 changed files with 1160 additions and 5 deletions

View File

@@ -8,7 +8,8 @@
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"jsx": "react",
"jsxFactory": "elements.createElement",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
@@ -24,6 +25,9 @@
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
"noPropertyAccessFromIndexSignature": false,
"types": [
"bun-types"
]
}
}