aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorAutumn <git@autumnfo.rest>2026-05-11 17:47:44 +0100
committerAutumn <git@autumnfo.rest>2026-05-11 17:47:44 +0100
commit951844836fca55b5321999a4d4637d1b56fdb448 (patch)
tree3ed928cd5040f102a13667ef8310e77c7df61327 /tsconfig.json
parentd51a6e14f75e3394ec9ca8ebc72fb10bf693edc7 (diff)
[app] added .env support
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 7edbc7b..e912135 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -6,7 +6,11 @@
"lib": [ "esnext" ],
"target": "ESNext",
"module": "CommonJS",
- "types": [ "node" ]
+ "types": [ "node" ],
+
+ "paths": {
+ "@lib/*": [ "src/lib/*" ]
+ }
},
"ts-node": {