diff options
| author | Brandon Keiji <[email protected]> | 2025-04-20 12:33:39 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-20 12:33:39 -0700 |
| commit | f480ef4bbcc9dc03b5a9a1e80e5f428038c8d34e (patch) | |
| tree | ab587c472f7f0caf00a8cacdc58577223f449f36 /tsconfig.json | |
| parent | a66ad2e2af3d4ffd0a7ab125215e7ed3c3325452 (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.json | 10 |
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"] } } |
