summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-10-19 17:32:48 +0200
committerVolpeon <git@volpeon.ink>2021-10-19 17:32:48 +0200
commit500e0ed6eb408dd5566cdce47e0ad0f4945b2376 (patch)
treed1c69cbaacc00887a09939e63dd8fadd8a605a91 /tsconfig.json
parentCode improvements (diff)
downloadferalbot-500e0ed6eb408dd5566cdce47e0ad0f4945b2376.tar.gz
feralbot-500e0ed6eb408dd5566cdce47e0ad0f4945b2376.tar.bz2
feralbot-500e0ed6eb408dd5566cdce47e0ad0f4945b2376.zip
Code improvements
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json8
1 files changed, 5 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 75337a5..ad89216 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,8 +1,10 @@
1{ 1{
2 "compilerOptions": { 2 "compilerOptions": {
3 "rootDirs": ["src"], 3 "lib": ["es2020"],
4 "target": "ES2020", 4 "module": "ESNext",
5 "moduleResolution": "node", 5 "moduleResolution": "node",
6 "esModuleInterop": true 6 "target": "ES2020",
7 "esModuleInterop": true,
8 "rootDirs": ["src"]
7 } 9 }
8} 10}