chore: initialized repository

This commit is contained in:
Lukas Wölfer
2026-04-16 22:00:50 +02:00
parent 0a74a9a7ef
commit 74c94b05f9
12 changed files with 354 additions and 53 deletions

View File

@@ -1,13 +1,20 @@
{
"extends": "./tsconfig.json",
"include": ["server.js", "vite.config.ts"],
"include": [
"server.js",
"vite.config.ts"
],
"compilerOptions": {
"composite": true,
"strict": true,
"types": ["node"],
"lib": ["ES2022"],
"types": [
"node"
],
"lib": [
"ES2022"
],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler"
}
}
}