This commit is contained in:
2025-04-29 22:04:32 +02:00
parent 90478ad477
commit a9dd9bc87c
13 changed files with 446 additions and 0 deletions

1
client/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/node_modules/

BIN
client/bun.lockb Executable file

Binary file not shown.

0
client/make.mk Normal file
View File

14
client/package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "client",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"html-minifier": "^4.0.0",
"sass": "^1.87.0"
}
}

27
client/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
}
}