diff options
| author | Brandon Keiji <[email protected]> | 2025-04-18 14:37:02 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-18 14:37:02 -0700 |
| commit | 52683dafc360c431874d85ee9e516c13c96f055f (patch) | |
| tree | 138a199003f75dc41b31f93568d10c6acdca1f11 /tsconfig.json | |
| parent | f51ca774cfc219c22fec77ff47ecb36240ba90d1 (diff) | |
infra: add multipackage support (#34)
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 9 |
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", } } |
