summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorRaphael Kabo <raphaelkabo@hey.com>2023-10-07 18:46:21 +0100
committerRaphael Kabo <raphaelkabo@hey.com>2023-10-07 18:46:21 +0100
commitd584ed85660a91433fffd5e2b0bfa9114114ea37 (patch)
tree224f5d38b95ad408ed3820f11a7e671f20e92835 /tsconfig.json
parentd83652f6f4f8aa6a2dfa141e2ab841150652b090 (diff)
Fix TS hints in VSCode
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 4e6ba76..6d59c57 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -10,7 +10,7 @@
"sourceMap": true,
"outDir": "dist",
"strict": true,
- "baseUrl": ".",
+ "baseUrl": "./",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"experimentalDecorators": true,
@@ -18,5 +18,5 @@
"moduleResolution": "nodenext",
"skipLibCheck": true
},
- "include": ["src/**/*"]
+ "include": ["./src/**/*"]
}