summaryrefslogtreecommitdiff
path: root/backend/tsconfig.json
diff options
context:
space:
mode:
authorArne Rief <riearn@proton.me>2025-12-19 20:03:03 +0100
committerArne Rief <riearn@proton.me>2025-12-19 20:03:03 +0100
commit655ec610fcce8dd7748f10772d520bdff4f7c78e (patch)
tree35b79f30d2cb5aea88cf76ce27f480da93cefd32 /backend/tsconfig.json
Basic setup & login
Diffstat (limited to 'backend/tsconfig.json')
-rw-r--r--backend/tsconfig.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/backend/tsconfig.json b/backend/tsconfig.json
new file mode 100644
index 0000000..2360ecb
--- /dev/null
+++ b/backend/tsconfig.json
@@ -0,0 +1,13 @@
+{
+ "extends": "@tsconfig/node22/tsconfig.json",
+ "compilerOptions": {
+ "target": "es2022",
+ "module": "es2022",
+ "moduleResolution": "node",
+ "lib": ["ES2022"],
+ "outDir": "./dist",
+ "rootDir": "./src"
+ },
+ "include": ["src/**/*.ts"],
+ "exclude": ["node_modules", "dist"]
+}