summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 8dca4b2a..cdd593c2 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,6 +5,13 @@
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
- "sourceMap": true
+ "sourceMap": true,
+ "composite": true,
+ // MONOREPO STUFF
+ "incremental": true,
+ "target": "ES2020",
+ "module": "Node16",
+ "declaration": true,
+ "moduleResolution": "node16",
}
}