summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorBrandon Keiji <[email protected]>2025-04-20 12:33:39 -0700
committerGitHub <[email protected]>2025-04-20 12:33:39 -0700
commitf480ef4bbcc9dc03b5a9a1e80e5f428038c8d34e (patch)
treeab587c472f7f0caf00a8cacdc58577223f449f36 /tsconfig.json
parenta66ad2e2af3d4ffd0a7ab125215e7ed3c3325452 (diff)
refactor: clean up build output (#53)
* refactor: clean up build output * refactor: add index.ts to package roots
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json10
1 files changed, 6 insertions, 4 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 729009fe..5d59f86a 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -7,11 +7,13 @@
"resolveJsonModule": true,
"sourceMap": true,
"composite": true,
- // MONOREPO STUFF
"incremental": true,
- "target": "ES2020",
- "module": "Node16",
"declaration": true,
- "moduleResolution": "node16"
+ "allowSyntheticDefaultImports": true,
+ "lib": ["ES2023"],
+ "module": "NodeNext",
+ "moduleResolution": "nodenext",
+ "target": "es2022",
+ "types": ["node"]
}
}