This commit is contained in:
Julien Valverdé
2024-06-27 09:39:50 +02:00
parent 4c161cf4ae
commit d6517365a7
6 changed files with 57 additions and 0 deletions

BIN
bun.lockb Executable file

Binary file not shown.

9
package.json Normal file
View File

@@ -0,0 +1,9 @@
{
"name": "todo-tests",
"type": "module",
"private": true,
"workspaces": ["packages/*"],
"devDependencies": {
"typescript": "^5.5.2"
}
}

View File

@@ -0,0 +1,5 @@
{
"name": "@todo-tests/common",
"type": "module",
"private": true
}

View File

@@ -0,0 +1,11 @@
{
"name": "@todo-tests/server",
"type": "module",
"private": true,
"dependencies": {
"@effect/platform": "^0.58.12",
"@effect/platform-bun": "^0.38.11",
"@effect/schema": "^0.68.11",
"effect": "^3.4.4"
}
}

View File

@@ -0,0 +1,5 @@
{
"name": "@todo-tests/webui",
"type": "module",
"private": true
}

27
tsconfig.json Normal file
View File

@@ -0,0 +1,27 @@
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}