summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
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}