diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-16 10:58:36 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-16 10:58:36 -0700 |
commit | 42ffbb4861d2c865100e4aa8eac1b5af7bfe2455 (patch) | |
tree | f23a575a9ba86d65fc9b42e8c61f67bc006292f2 /packages/server/build_npm.ts | |
parent | cb8afd54b18a023c6ce6d3c4d1a71237a543b998 (diff) |
Migrate TS compilerOptions.lib
Diffstat (limited to 'packages/server/build_npm.ts')
-rw-r--r-- | packages/server/build_npm.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/server/build_npm.ts b/packages/server/build_npm.ts index 93cbf0a..1e58ba3 100644 --- a/packages/server/build_npm.ts +++ b/packages/server/build_npm.ts @@ -58,7 +58,11 @@ await build({ name: '@hexagon/base64', version: '^1.1.25' } - } + }, + // TypeScript tsconfig.json config + compilerOptions: { + lib: ["ES2021"], + }, }); // Deno.copyFileSync('LICENSE', 'npm/LICENSE'); |